* SIMD atmos * Moles will always be a multiple of four. * Component dependencies for grid atmos. * Let's optimize allocations while we're at it! * Inline this * A bunch of atmos optimizations * Fix crimes against atmos * Microsoft moment * Remove nuget.config * do not reference Robust.UnitTests in Content.Benchmarks as it's unneeded. * Revert "Remove nuget.config" This reverts commit 872604ae6a51365af4075bb23687bd005befd8ac. * Gas overlay optimization and fixes * Lattice is now spess * minor atmos tweaks
28 lines
1.4 KiB
XML
28 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
|
<PropertyGroup>
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
|
<OutputPath>..\bin\Content.Benchmarks\</OutputPath>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputType>Exe</OutputType>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<LangVersion>9</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
|
|
</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>
|
|
</Project>
|