|
123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
-
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net461</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DocumentationFile></DocumentationFile>
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <PlatformTarget>AnyCPU</PlatformTarget>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
- <PackageReference Include="System.IO.Compression" Version="4.3.0" />
- </ItemGroup>
-
- <ItemGroup>
- <Reference Include="System.Net.Http" />
- </ItemGroup>
-
- <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>
-
- </Project>
|