2020-06-20 10:23:14 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-02-11 17:28:50 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
<TargetFramework>net480</TargetFramework>
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath], [VersionPrefix] -->
|
|
|
|
<RootNamespace>Template</RootNamespace>
|
|
|
|
<AssemblyName>Template</AssemblyName>
|
|
|
|
<OutputPath>../1.4/Assemblies</OutputPath>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<VersionPrefix>0.1.0.0</VersionPrefix>
|
|
|
|
<!-- do not generate pdb file -->
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2024-04-04 21:36:32 +02:00
|
|
|
<Nullable>enable</Nullable>
|
2024-02-11 17:28:50 +01:00
|
|
|
<!-- Contents of About.xml
|
|
|
|
See https://rimworldwiki.com/wiki/Modding_Tutorials/About.xml -->
|
|
|
|
<ModMetaData>
|
|
|
|
<packageId>dev.tobot.mod-template</packageId>
|
|
|
|
<name>Mod Template</name>
|
|
|
|
<authors>
|
|
|
|
<li>Toby</li>
|
|
|
|
</authors>
|
|
|
|
<description>A mod template.\nReady to build on NixOS.</description>
|
|
|
|
<supportedVersions>
|
|
|
|
<li>1.4</li>
|
|
|
|
</supportedVersions>
|
2024-02-13 11:14:56 +01:00
|
|
|
<modVersion IgnoreIfNoMatchingField="True">
|
|
|
|
<!-- Gets automatically populated with VersionPrefix (see above) -->
|
|
|
|
</modVersion>
|
2024-04-04 21:36:32 +02:00
|
|
|
<url>https://git.tobot.dev/toby/rimworld-mod-template</url>
|
2024-02-11 17:28:50 +01:00
|
|
|
<modDependencies />
|
|
|
|
<modDependenciesByVersion>
|
|
|
|
<!-- <v1.4>
|
|
|
|
<li>
|
|
|
|
<packageId>brrainz.harmony</packageId>
|
|
|
|
<displayName>Harmony</displayName>
|
|
|
|
<steamWorkshopUrl>steam://url/CommunityFilePage/2009463077</steamWorkshopUrl>
|
|
|
|
<downloadUrl>https://github.com/pardeike/HarmonyRimWorld/releases/latest</downloadUrl>
|
|
|
|
</li>
|
|
|
|
</v1.4> -->
|
|
|
|
</modDependenciesByVersion>
|
|
|
|
<loadAfter />
|
|
|
|
<loadAfterByVersion />
|
|
|
|
<forceLoadAfter />
|
|
|
|
<loadBefore />
|
|
|
|
<loadBeforeByVersion />
|
|
|
|
<forceLoadBefore />
|
|
|
|
<incompatibleWith />
|
|
|
|
<incompatibleWithByVersion />
|
|
|
|
</ModMetaData>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<!-- Mod -->
|
2024-04-04 21:36:32 +02:00
|
|
|
<Compile Include="../Source/**/*" />
|
2024-02-11 17:28:50 +01:00
|
|
|
<PackageReference Include="Krafs.Rimworld.Ref"
|
|
|
|
Version="1.4.3901" />
|
2024-02-11 18:38:04 +01:00
|
|
|
<!-- Set IncludeAssets to 'compile' to enable Harmony -->
|
2024-04-04 23:05:34 +02:00
|
|
|
<PackageReference Include="Lib.Harmony"
|
2024-04-04 21:36:32 +02:00
|
|
|
Version="2.3.3"
|
2024-02-11 17:28:50 +01:00
|
|
|
IncludeAssets="none" />
|
2024-04-04 21:36:32 +02:00
|
|
|
<PackageReference Include="roslynator.analyzers"
|
|
|
|
Version="4.12.0"
|
|
|
|
IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive"
|
|
|
|
PrivateAssets="all" />
|
|
|
|
<PackageReference Include="roslynator.formatting.analyzers"
|
|
|
|
Version="4.12.0"
|
|
|
|
IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive"
|
|
|
|
PrivateAssets="all" />
|
2024-02-11 17:28:50 +01:00
|
|
|
</ItemGroup>
|
2024-04-04 21:36:32 +02:00
|
|
|
</Project>
|