Techblox Mod Manager / Launcher
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

53 行
1.7KB

  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 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. <PackageReference Include="System.ValueTuple" Version="4.5.0" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Reference Include="System.Net.Http" />
  27. <Reference Include="System.Windows.Forms" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Update="SettingsForm.cs">
  31. <SubType>Form</SubType>
  32. </Compile>
  33. <Compile Update="Properties\Settings.Designer.cs">
  34. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  35. <AutoGen>True</AutoGen>
  36. <DependentUpon>Settings.settings</DependentUpon>
  37. </Compile>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <None Update="Properties\Settings.settings">
  41. <Generator>SettingsSingleFileGenerator</Generator>
  42. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  43. </None>
  44. </ItemGroup>
  45. </Project>