| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net5.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <AssemblyVersion>0.9.1.0</AssemblyVersion>
- <FileVersion>0.9.1.0</FileVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <RootNamespace>HuntBuddy</RootNamespace>
- <IsPackable>false</IsPackable>
- <LangVersion>default</LangVersion>
- </PropertyGroup>
- <PropertyGroup>
- <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <PlatformTarget>x64</PlatformTarget>
- </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>
|