34 lines
1.5 KiB
XML
34 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
|
<PropertyGroup>
|
|
<OutputPath>..\bin\Content.Benchmarks\</OutputPath>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputType>Exe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<IsTestingPlatformApplication>false</IsTestingPlatformApplication>
|
|
<Nullable>disable</Nullable>
|
|
</PropertyGroup>
|
|
<Import Project="../MSBuild/Content.props" />
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" />
|
|
|
|
<!-- pin transitive deps -->
|
|
<PackageReference Include="System.Management" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" />
|
|
</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" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\RobustToolbox\Imports\Lidgren.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Client.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Server.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Shared.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Benchmarks.props" />
|
|
<Import Project="..\RobustToolbox\Imports\Testing.props" />
|
|
</Project>
|