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.

52 lines
1.6KB

  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.3.0</Version>
  9. <Authors>NorbiPeti</Authors>
  10. <Company>ExMods</Company>
  11. <Description>A mod manager for Gamecraft. It automatically downloads and runs GCIPA and allows the user to install mods.</Description>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <DocumentationFile></DocumentationFile>
  15. <PlatformTarget>AnyCPU</PlatformTarget>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
  22. <PackageReference Include="System.IO.Compression" Version="4.3.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Reference Include="System.Net.Http" />
  26. <Reference Include="System.Windows.Forms" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Compile Update="SettingsForm.cs">
  30. <SubType>Form</SubType>
  31. </Compile>
  32. <Compile Update="Properties\Settings.Designer.cs">
  33. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  34. <AutoGen>True</AutoGen>
  35. <DependentUpon>Settings.settings</DependentUpon>
  36. </Compile>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <None Update="Properties\Settings.settings">
  40. <Generator>SettingsSingleFileGenerator</Generator>
  41. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  42. </None>
  43. </ItemGroup>
  44. </Project>