Files
HSUI/HSUI.csproj
T

57 lines
1.7 KiB
XML

<Project Sdk="Dalamud.NET.Sdk/14.0.1">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net10.0-windows</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>HSUI</AssemblyName>
<AssemblyVersion>1.0.6.0</AssemblyVersion>
<FileVersion>1.0.6.0</FileVersion>
<InformationalVersion>1.0.6.0</InformationalVersion>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Nullable>enable</Nullable>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<DalamudVersion>dev</DalamudVersion>
<DalamudLocal>../repos/Dalamud-master/</DalamudLocal>
</PropertyGroup>
<PropertyGroup>
<AssemblySearchPaths>
$(AssemblySearchPaths);
$(DalamudLocal);
$(DalamudLibPath);
</AssemblySearchPaths>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\repos\KamiToolKit-master\KamiToolKit.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="$(ProjectDir)HSUI.json" CopyToOutputDirectory="Always" />
<Content Include="$(ProjectDir)changelog.md" CopyToOutputDirectory="Always" />
<Content Include="$(ProjectDir)Media\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Colourful" Version="3.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>