2023-07-21 13:38:52 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-08-04 14:24:01 +02:00
|
|
|
<PropertyGroup>
|
2019-08-03 15:07:47 +02:00
|
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2024-02-23 05:02:59 +01:00
|
|
|
<LangVersion>12</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2017-09-23 00:35:08 +02:00
|
|
|
<OutputPath>..\bin\Content.Server\</OutputPath>
|
2019-12-22 13:47:34 +01:00
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2020-01-22 20:17:32 +01:00
|
|
|
<OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
|
2020-08-18 14:39:08 +02:00
|
|
|
<NoWarn>1998</NoWarn>
|
2020-12-09 23:28:24 +11:00
|
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
2021-03-16 15:50:20 +01:00
|
|
|
<Nullable>enable</Nullable>
|
2022-11-20 04:49:36 +01:00
|
|
|
<ServerGarbageCollection>true</ServerGarbageCollection>
|
2018-04-07 15:31:38 +02:00
|
|
|
</PropertyGroup>
|
2018-09-13 20:09:53 +02:00
|
|
|
<ItemGroup>
|
2024-01-12 23:22:01 +01:00
|
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
|
2024-01-27 09:34:07 +03:00
|
|
|
<PackageReference Include="NetCoreServer" />
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
|
|
|
|
<PackageVersion Include="NetCoreServer" Version="6.7.0" />
|
|
|
|
|
<PackageVersion Include="Newtonsoft.Json" Version="12.0.3" />
|
2024-01-31 12:54:38 +00:00
|
|
|
<PackageVersion Remove="Microsoft.NET.ILLink.Tasks" />
|
2018-09-13 20:09:53 +02:00
|
|
|
</ItemGroup>
|
2017-08-04 14:24:01 +02:00
|
|
|
<ItemGroup>
|
2022-09-14 11:39:55 +02:00
|
|
|
<ProjectReference Include="..\Content.Packaging\Content.Packaging.csproj" />
|
2020-01-18 01:54:13 +01:00
|
|
|
<ProjectReference Include="..\Content.Server.Database\Content.Server.Database.csproj" />
|
2024-02-27 02:38:00 +01:00
|
|
|
<ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
|
2020-01-22 20:17:32 +01:00
|
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
|
2019-05-28 00:18:29 +02:00
|
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
2017-08-04 14:24:01 +02:00
|
|
|
</ItemGroup>
|
2023-08-30 21:46:11 -07:00
|
|
|
<ItemGroup>
|
2023-09-05 00:07:01 +10:00
|
|
|
<Folder Include="Tools\Systems\" />
|
2023-08-30 21:46:11 -07:00
|
|
|
</ItemGroup>
|
2023-03-06 20:38:07 +01:00
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2019-05-28 00:18:29 +02:00
|
|
|
</Project>
|