2020-06-15 00:45:39 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net461</TargetFramework>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-06-16 13:45:04 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<DocumentationFile></DocumentationFile>
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-06-15 21:17:49 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-06-17 13:08:22 +00:00
|
|
|
|
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
|
2020-06-15 21:17:49 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-06-15 19:11:05 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="SettingsForm.cs">
|
|
|
|
|
<SubType>Form</SubType>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Update="Properties\Settings.Designer.cs">
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Settings.settings</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Properties\Settings.settings">
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-06-15 00:45:39 +00:00
|
|
|
|
</Project>
|