1
0

Content.Shared.csproj 1.2 KB

12345678910111213141516171819202122232425262728
  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. <WarningsAsErrors>nullable</WarningsAsErrors>
  9. <Nullable>enable</Nullable>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
  16. <ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj">
  17. <Private>false</Private>
  18. </ProjectReference>
  19. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
  20. <Private>false</Private>
  21. </ProjectReference>
  22. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
  23. <Private>false</Private>
  24. </ProjectReference>
  25. </ItemGroup>
  26. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  27. <Import Project="..\RobustToolbox\MSBuild\Robust.CompNetworkGenerator.targets" />
  28. </Project>