25 lines
682 B
XML
25 lines
682 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net6.0</TargetFramework>
|
|||
|
<SelfContained>true</SelfContained>
|
|||
|
<PublishSingleFile>true</PublishSingleFile>
|
|||
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|||
|
<PublishTrimmed>true</PublishTrimmed>
|
|||
|
<ApplicationIcon>Aki.Asset\icon.ico</ApplicationIcon>
|
|||
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|||
|
<DebugType>embedded</DebugType>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Folder Include="Aki.Asset\" />
|
|||
|
<Folder Include="Aki.Locales\" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="SharpCompress" Version="0.31.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|