mirror of
https://gitlab.com/nullmax17/PlombirLauncher.git
synced 2025-03-15 02:11:11 +03:00
24 lines
597 B
XML
24 lines
597 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>exe</OutputType>
|
||
|
<TargetFramework>net9.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<PublishSingleFile>true</PublishSingleFile>
|
||
|
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
||
|
|
||
|
<IsAotCompatible>false</IsAotCompatible>
|
||
|
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
</ItemGroup>
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="CmlLib.Core" Version="4.0.4" />
|
||
|
<PackageReference Include="SharpCompress" Version="0.39.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
|
||
|
|
||
|
</Project>
|