2022-12-02 21:21:45 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-12-05 18:08:45 +01:00
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
2022-12-02 21:21:45 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
2023-01-13 14:28:52 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<Reference Include="System.IO.Compression" />
|
|
|
|
<Reference Include="System.IO.Compression.ZipFile" />
|
|
|
|
</ItemGroup>
|
2022-12-02 21:21:45 +01:00
|
|
|
|
|
|
|
</Project>
|