mirror of
https://git.crafterpika.cc/crafterpika/SplatTool-public.git
synced 2026-08-17 18:52:16 +02:00
27 lines
900 B
XML
27 lines
900 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Exe</OutputType>
|
|||
|
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>disable</Nullable>
|
|||
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|||
|
|
<SelfContained>true</SelfContained>
|
|||
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="NativeFileDialogSharp" Version="0.6.0-alpha" />
|
|||
|
|
<PackageReference Include="Photino.NET" Version="4.0.16" />
|
|||
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
<ItemGroup>
|
|||
|
|
<None Update="modmenu\**\*">
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</None>
|
|||
|
|
<None Update="assets/config.json">
|
|||
|
|
<Link>config.json</Link>
|
|||
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
|
</None>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|