-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMultiplayerAPI.csproj
More file actions
46 lines (41 loc) · 1.68 KB
/
Copy pathMultiplayerAPI.csproj
File metadata and controls
46 lines (41 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>RimWorld.MultiplayerAPI</PackageId>
<PackageVersion>0.6</PackageVersion>
<Authors>notfood</Authors>
<Owners>notfood</Owners>
<PackageProjectUrl>https://github.com/rwmt/MultiplayerAPI</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/rwmt/MultiplayerAPI/wiki/</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Summary>Multiplayer API for RimWorld</Summary>
<PackageTags>rimworld mod</PackageTags>
<Title>RimWorld-MultiplayerAPI</Title>
<Description>Multiplayer API for RimWorld</Description>
<PackOnBuild>true</PackOnBuild>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>0MultiplayerAPI</AssemblyName>
<OutputPath>..\Assemblies\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<DebugType>None</DebugType>
<ReleaseVersion>0.6</ReleaseVersion>
<LangVersion>10</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Krafs.Rimworld.Ref" Version="1.6.4518" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<None Include="..\icon.png" Pack="true" PackagePath="\"/>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\LICENSE" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>