rimworld-mod-template/.vscode/mod.csproj

35 lines
956 B
XML
Raw Normal View History

2020-06-20 10:23:14 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net472</TargetFramework>
2020-06-22 11:28:26 +02:00
<PlatformTarget>x64</PlatformTarget>
2020-06-20 10:23:14 +02:00
2020-07-28 13:25:52 +02:00
<!-- Modify [RootNamespace], [AssemblyName], [OutputPath], [VersionPrefix] -->
2020-06-20 11:46:31 +02:00
<RootNamespace>Template</RootNamespace>
2020-06-20 10:23:14 +02:00
<AssemblyName>Template</AssemblyName>
2020-06-22 11:28:26 +02:00
<OutputPath>../1.1/Assemblies</OutputPath>
2020-07-28 11:03:00 +02:00
<VersionPrefix>1.0.0.0</VersionPrefix>
2020-07-28 09:48:26 +02:00
2020-06-20 10:23:14 +02:00
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
2020-07-28 13:25:52 +02:00
<!-- Mod -->
<CodeFiles Include="../Source/*" />
2020-07-28 11:03:00 +02:00
<!-- Rimworld -->
2020-06-22 11:28:26 +02:00
<Reference Include="../../../RimWorldWin64_Data/Managed/*.dll">
2020-06-20 10:23:14 +02:00
<Private>False</Private>
</Reference>
2020-07-28 11:03:00 +02:00
<!-- Harmony -->
<!--
2020-07-27 22:21:07 +02:00
<Reference Include="../../Harmony/v1.1/Assemblies/0Harmony.dll">
<Private>False</Private>
</Reference>
-->
2020-06-20 10:23:14 +02:00
</ItemGroup>
</Project>