Techblox Mod Manager / Launcher
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

54 行
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. <AssemblyVersion>1.2.0.0</AssemblyVersion>
  9. <FileVersion>1.2.0.0</FileVersion>
  10. <Version>1.2.0</Version>
  11. <Authors>NorbiPeti</Authors>
  12. <Company>ExMods</Company>
  13. <Description>A mod manager for Gamecraft. It automatically downloads and runs GCIPA and allows the user to install mods.</Description>
  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. </ItemGroup>
  26. <ItemGroup>
  27. <Reference Include="System.Net.Http" />
  28. <Reference Include="System.Windows.Forms" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Update="SettingsForm.cs">
  32. <SubType>Form</SubType>
  33. </Compile>
  34. <Compile Update="Properties\Settings.Designer.cs">
  35. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  36. <AutoGen>True</AutoGen>
  37. <DependentUpon>Settings.settings</DependentUpon>
  38. </Compile>
  39. </ItemGroup>
  40. <ItemGroup>
  41. <None Update="Properties\Settings.settings">
  42. <Generator>SettingsSingleFileGenerator</Generator>
  43. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  44. </None>
  45. </ItemGroup>
  46. </Project>