HuntBuddy.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8-windows</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <AssemblyVersion>1.2.0.3</AssemblyVersion>
  6. <FileVersion>$(AssemblyVersion)</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. <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
  18. </PropertyGroup>
  19. <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
  20. <PlatformTarget>x64</PlatformTarget>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
  23. <PlatformTarget>x64</PlatformTarget>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <Reference Include="Dalamud">
  27. <HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
  28. <Private>False</Private>
  29. </Reference>
  30. <Reference Include="FFXIVClientStructs">
  31. <HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
  32. <Private>False</Private>
  33. </Reference>
  34. <Reference Include="ImGui.NET">
  35. <HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
  36. <Private>False</Private>
  37. </Reference>
  38. <Reference Include="ImGuiScene">
  39. <HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
  40. <Private>False</Private>
  41. </Reference>
  42. <Reference Include="Lumina">
  43. <HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
  44. <Private>False</Private>
  45. </Reference>
  46. <Reference Include="Lumina.Excel">
  47. <HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
  48. <Private>False</Private>
  49. </Reference>
  50. <Reference Include="Newtonsoft.Json">
  51. <HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
  52. <Private>False</Private>
  53. </Reference>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <PackageReference Include="DalamudPackager" Version="11.0.0" />
  57. </ItemGroup>
  58. </Project>