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.

56 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.6.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>9</LangVersion>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  16. <DocumentationFile></DocumentationFile>
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  20. <PlatformTarget>AnyCPU</PlatformTarget>
  21. </PropertyGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  24. <PackageReference Include="System.IO.Compression" Version="4.3.0" />
  25. <PackageReference Include="System.Resources.Extensions" Version="5.0.0" />
  26. <PackageReference Include="System.ValueTuple" Version="4.5.0" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Reference Include="System.Net.Http" />
  30. <Reference Include="System.Windows.Forms" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Compile Update="SettingsForm.cs">
  34. <SubType>Form</SubType>
  35. </Compile>
  36. <Compile Update="Localization.Designer.cs">
  37. <DesignTime>True</DesignTime>
  38. <AutoGen>True</AutoGen>
  39. <DependentUpon>Localization.resx</DependentUpon>
  40. </Compile>
  41. </ItemGroup>
  42. <ItemGroup>
  43. <EmbeddedResource Update="Localization.resx">
  44. <Generator>ResXFileCodeGenerator</Generator>
  45. <LastGenOutput>Localization.Designer.cs</LastGenOutput>
  46. </EmbeddedResource>
  47. </ItemGroup>
  48. </Project>