| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <AssemblyVersion>1.2.0.3</AssemblyVersion>
- <FileVersion>$(AssemblyVersion)</FileVersion>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <RootNamespace>HuntBuddy</RootNamespace>
- <IsPackable>false</IsPackable>
- <LangVersion>default</LangVersion>
- </PropertyGroup>
- <PropertyGroup>
- <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
- <RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
- </PropertyGroup>
- <PropertyGroup>
- <DalamudLibPath>$(AppData)\XIVLauncher\addon\Hooks\dev\</DalamudLibPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Dalamud">
- <HintPath>$(DalamudLibPath)Dalamud.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="FFXIVClientStructs">
- <HintPath>$(DalamudLibPath)FFXIVClientStructs.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="ImGui.NET">
- <HintPath>$(DalamudLibPath)ImGui.NET.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="ImGuiScene">
- <HintPath>$(DalamudLibPath)ImGuiScene.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Lumina">
- <HintPath>$(DalamudLibPath)Lumina.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Lumina.Excel">
- <HintPath>$(DalamudLibPath)Lumina.Excel.dll</HintPath>
- <Private>False</Private>
- </Reference>
- <Reference Include="Newtonsoft.Json">
- <HintPath>$(DalamudLibPath)Newtonsoft.Json.dll</HintPath>
- <Private>False</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DalamudPackager" Version="11.0.0" />
- </ItemGroup>
- </Project>
|