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.

43 lines
1.5KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net461</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <SignAssembly>false</SignAssembly>
  7. <ApplicationIcon>favicon.ico</ApplicationIcon>
  8. <Version>1.4.0</Version>
  9. <Authors>NorbiPeti</Authors>
  10. <Company>ExMods</Company>
  11. <Description>A mod manager for Techblox. It automatically downloads and runs GCIPA and allows the user to install mods.</Description>
  12. <GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  15. <DocumentationFile></DocumentationFile>
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <PlatformTarget>AnyCPU</PlatformTarget>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  23. <PackageReference Include="System.IO.Compression" Version="4.3.0" />
  24. <PackageReference Include="System.Resources.Extensions" Version="5.0.0" />
  25. <PackageReference Include="System.ValueTuple" Version="4.5.0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Reference Include="System.Net.Http" />
  29. <Reference Include="System.Windows.Forms" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <Compile Update="SettingsForm.cs">
  33. <SubType>Form</SubType>
  34. </Compile>
  35. </ItemGroup>
  36. </Project>