mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
25 lines
738 B
XML
25 lines
738 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|||
|
<UseWPF>true</UseWPF>
|
|||
|
<PublishTrimmed>true</PublishTrimmed>
|
|||
|
<PublishSingleFile>true</PublishSingleFile>
|
|||
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<ApplicationIcon>Resources\Icons\wabbajack.ico</ApplicationIcon>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Remove="Wabba_Mouth_Small.png" />
|
|||
|
<Resource Include="Wabba_Mouth_Small.png" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|