HuntBuddy.csproj 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0-windows</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <AssemblyVersion>0.9.1.0</AssemblyVersion>
  6. <FileVersion>0.9.1.0</FileVersion>
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. <RootNamespace>HuntBuddy</RootNamespace>
  9. <IsPackable>false</IsPackable>
  10. <LangVersion>default</LangVersion>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  16. <PlatformTarget>x64</PlatformTarget>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  19. <PlatformTarget>x64</PlatformTarget>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <Reference Include="Dalamud">
  23. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
  24. <Private>False</Private>
  25. </Reference>
  26. <Reference Include="FFXIVClientStructs">
  27. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\FFXIVClientStructs.dll</HintPath>
  28. <Private>False</Private>
  29. </Reference>
  30. <Reference Include="ImGui.NET">
  31. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
  32. <Private>False</Private>
  33. </Reference>
  34. <Reference Include="ImGuiScene">
  35. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
  36. <Private>False</Private>
  37. </Reference>
  38. <Reference Include="Lumina">
  39. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
  40. <Private>False</Private>
  41. </Reference>
  42. <Reference Include="Lumina.Excel">
  43. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
  44. <Private>False</Private>
  45. </Reference>
  46. <Reference Include="Newtonsoft.Json">
  47. <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Newtonsoft.Json.dll</HintPath>
  48. <Private>False</Private>
  49. </Reference>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <PackageReference Include="DalamudPackager" Version="2.1.7"/>
  53. </ItemGroup>
  54. </Project>