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

35 lines
990 B
XML
Raw Normal View History

2020-06-20 10:23:14 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
2022-05-04 20:31:35 +02:00
<TargetFramework>net480</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>
2022-11-20 01:36:09 +01:00
<OutputPath>../1.4/Assemblies</OutputPath>
<VersionPrefix>0.1.0.0</VersionPrefix>
2020-07-28 09:48:26 +02:00
2020-09-11 16:03:06 +02:00
<!-- do not generate pdb file -->
2020-06-20 10:23:14 +02:00
<DebugType>none</DebugType>
2020-09-11 13:58:46 +02:00
2020-06-20 10:23:14 +02:00
<DebugSymbols>false</DebugSymbols>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
2020-07-28 13:25:52 +02:00
<!-- Mod -->
2020-09-11 16:03:06 +02:00
<Compile Include="../Source/*" />
2020-07-28 13:25:52 +02:00
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 -->
2022-11-20 01:45:21 +01:00
<!-- <Reference Include="../../Harmony/Current/Assemblies/0Harmony.dll">
2020-07-27 22:21:07 +02:00
<Private>False</Private>
2020-09-11 13:58:46 +02:00
</Reference> -->
2020-06-20 10:23:14 +02:00
</ItemGroup>
</Project>