1
0

Content.Benchmarks.csproj 1.5 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  3. <PropertyGroup>
  4. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  5. <TargetFramework>$(TargetFramework)</TargetFramework>
  6. <OutputPath>..\bin\Content.Benchmarks\</OutputPath>
  7. <IsPackable>false</IsPackable>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <OutputType>Exe</OutputType>
  10. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  11. <LangVersion>12</LangVersion>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="BenchmarkDotNet" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\Content.Client\Content.Client.csproj" />
  18. <ProjectReference Include="..\Content.Server\Content.Server.csproj" />
  19. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  20. <ProjectReference Include="..\Content.Tests\Content.Tests.csproj" />
  21. <ProjectReference Include="..\Content.IntegrationTests\Content.IntegrationTests.csproj" />
  22. <ProjectReference Include="..\RobustToolbox\Robust.Benchmarks\Robust.Benchmarks.csproj" />
  23. <ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
  24. <ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
  25. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  26. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  27. </ItemGroup>
  28. </Project>