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.

59 lines
2.1KB

  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.4.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. </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. <Reference Include="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
  32. <HintPath>..\..\ref\TechbloxPreview_Data\Managed\UnityEngine.CoreModule.dll</HintPath>
  33. </Reference>
  34. </ItemGroup>
  35. <ItemGroup>
  36. <Compile Update="SettingsForm.cs">
  37. <SubType>Form</SubType>
  38. </Compile>
  39. <Compile Update="Localization.Designer.cs">
  40. <DesignTime>True</DesignTime>
  41. <AutoGen>True</AutoGen>
  42. <DependentUpon>Localization.resx</DependentUpon>
  43. </Compile>
  44. </ItemGroup>
  45. <ItemGroup>
  46. <EmbeddedResource Update="Localization.resx">
  47. <Generator>ResXFileCodeGenerator</Generator>
  48. <LastGenOutput>Localization.Designer.cs</LastGenOutput>
  49. </EmbeddedResource>
  50. </ItemGroup>
  51. </Project>