Content.Server.csproj 1.6 KB

123456789101112131415161718192021222324252627282930
  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="JetBrains.Annotations" PrivateAssets="All" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\Content.Packaging\Content.Packaging.csproj" />
  21. <ProjectReference Include="..\Content.Server.Database\Content.Server.Database.csproj" />
  22. <ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
  23. <ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj" />
  24. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  25. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  26. <ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
  27. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  28. </ItemGroup>
  29. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  30. </Project>