1
0

Content.Server.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  4. <TargetFramework>$(TargetFramework)</TargetFramework>
  5. <LangVersion>12</LangVersion>
  6. <IsPackable>false</IsPackable>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <OutputPath>..\bin\Content.Server\</OutputPath>
  9. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  10. <OutputType Condition="'$(FullRelease)' != 'True'">Exe</OutputType>
  11. <NoWarn>1998</NoWarn>
  12. <WarningsAsErrors>nullable</WarningsAsErrors>
  13. <Nullable>enable</Nullable>
  14. <ServerGarbageCollection>true</ServerGarbageCollection>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Discord.Net" />
  18. <PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\Content.Packaging\Content.Packaging.csproj" />
  22. <ProjectReference Include="..\Content.Server.Database\Content.Server.Database.csproj" />
  23. <ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
  24. <ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
  25. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  26. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  27. <ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
  28. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  29. </ItemGroup>
  30. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  31. </Project>