| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <AssemblyVersion>0.9.0.0</AssemblyVersion>
- <FileVersion>0.9.0.0</FileVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <RootNamespace>HuntBuddy</RootNamespace>
- <IsPackable>false</IsPackable>
- </PropertyGroup>
- <PropertyGroup>
- <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Dalamud">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Dalamud.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="FFXIVClientStructs">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\FFXIVClientStructs.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="ImGui.NET">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGui.NET.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="ImGuiScene">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\ImGuiScene.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Lumina">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Lumina.Excel">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Lumina.Excel.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Newtonsoft.Json">
- <HintPath>$(AppData)\XIVLauncher\addon\Hooks\dev\Newtonsoft.Json.dll</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DalamudPackager" Version="2.1.7" />
- </ItemGroup>
- </Project>
|