2019-06-02 01:17:07 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-08-02 02:07:27 +02:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2019-06-02 01:17:07 +02:00
|
|
|
|
<PropertyGroup>
|
2019-08-03 15:07:47 +02:00
|
|
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2019-06-02 01:17:07 +02:00
|
|
|
|
<OutputPath>..\bin\Content.Benchmarks\</OutputPath>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-08-07 18:10:55 +02:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-11-24 01:36:36 +01:00
|
|
|
|
<LangVersion>9</LangVersion>
|
2019-06-02 01:17:07 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2020-08-09 17:42:21 -07:00
|
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
|
2019-06-02 01:17:07 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\Content.Client\Content.Client.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Content.Server\Content.Server.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Content.Tests\Content.Tests.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Content.IntegrationTests\Content.IntegrationTests.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2020-12-29 16:10:15 +01:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Analyzers.targets" />
|
2019-06-02 01:17:07 +02:00
|
|
|
|
</Project>
|