mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-30 08:33:19 +01:00
- All executables/tests to .NET Core 3.1 - All libs to .NET standard 2.1 - Exclude Tgstation.Server.Host and dependencies - Exclude Watchdog library due to .NET framework incompatibility
14 lines
298 B
XML
14 lines
298 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="octokit" Version="0.36.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|