forked from Pryaxis/TSAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTerrariaServerAPI.csproj
More file actions
28 lines (26 loc) · 1.13 KB
/
TerrariaServerAPI.csproj
File metadata and controls
28 lines (26 loc) · 1.13 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<AssemblyName>TerrariaServer</AssemblyName> <!-- old plugins reference this, if it changes, they break -->
<TargetFramework>net9.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<Version>6.0.0</Version>
<AssemblyTitle>TSAPI</AssemblyTitle>
<Product>TSAPI</Product>
<Company>TShock Contributors</Company>
<!-- extras for nuget -->
<PackageId>TSAPI</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Authors>TShock Contributors</Authors>
<Description>This is TSAPI, the API that TShock for Terraria runs on.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="9.0.0" />
<PackageReference Include="OTAPI.Upcoming" Version="3.3.11" />
</ItemGroup>
</Project>