15 lines
528 B
XML
15 lines
528 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Copyright>Copyright © 2019-2020 (GPLv3)</Copyright>
|
|
<FileVersion>1.1.0.0</FileVersion>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System.IO.Compression" />
|
|
<Reference Include="System.Web" />
|
|
</ItemGroup>
|
|
</Project> |