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.

46 lines
1.3KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  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. <Reference Include="System.Windows.Forms" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Compile Update="SettingsForm.cs">
  24. <SubType>Form</SubType>
  25. </Compile>
  26. <Compile Update="Properties\Settings.Designer.cs">
  27. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  28. <AutoGen>True</AutoGen>
  29. <DependentUpon>Settings.settings</DependentUpon>
  30. </Compile>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <None Update="Properties\Settings.settings">
  34. <Generator>SettingsSingleFileGenerator</Generator>
  35. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  36. </None>
  37. </ItemGroup>
  38. </Project>