Techblox Mod Manager / Launcher
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.3KB

  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net461</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DocumentationFile></DocumentationFile>
  9. <PlatformTarget>AnyCPU</PlatformTarget>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  12. <PlatformTarget>AnyCPU</PlatformTarget>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  16. <PackageReference Include="System.IO.Compression" Version="4.3.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Reference Include="System.Net.Http" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Compile Update="SettingsForm.cs">
  23. <SubType>Form</SubType>
  24. </Compile>
  25. <Compile Update="Properties\Settings.Designer.cs">
  26. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  27. <AutoGen>True</AutoGen>
  28. <DependentUpon>Settings.settings</DependentUpon>
  29. </Compile>
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Update="Properties\Settings.settings">
  33. <Generator>SettingsSingleFileGenerator</Generator>
  34. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  35. </None>
  36. </ItemGroup>
  37. </Project>