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.

57 lines
1.9KB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net472</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <SignAssembly>false</SignAssembly>
  7. <ApplicationIcon>favicon.ico</ApplicationIcon>
  8. <Version>1.5.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. <LangVersion>8</LangVersion>
  14. <RootNamespace>GCMM</RootNamespace>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  17. <DocumentationFile></DocumentationFile>
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  21. <PlatformTarget>AnyCPU</PlatformTarget>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  25. <PackageReference Include="System.IO.Compression" Version="4.3.0" />
  26. <PackageReference Include="System.Resources.Extensions" Version="5.0.0" />
  27. <PackageReference Include="System.ValueTuple" Version="4.5.0" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Reference Include="System.Net.Http" />
  31. <Reference Include="System.Windows.Forms" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Compile Update="SettingsForm.cs">
  35. <SubType>Form</SubType>
  36. </Compile>
  37. <Compile Update="Localization.Designer.cs">
  38. <DesignTime>True</DesignTime>
  39. <AutoGen>True</AutoGen>
  40. <DependentUpon>Localization.resx</DependentUpon>
  41. </Compile>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <EmbeddedResource Update="Localization.resx">
  45. <Generator>ResXFileCodeGenerator</Generator>
  46. <LastGenOutput>Localization.Designer.cs</LastGenOutput>
  47. </EmbeddedResource>
  48. </ItemGroup>
  49. </Project>