mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Dependencies update & cleanup Fixes security vuln warnings etc * Remove ILReader dependency RIP in piss FastAccessors.
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/Benchmarks</OutputPath>
|
|
<OutputType>Exe</OutputType>
|
|
<NoWarn>RA0003</NoWarn>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Robust.Server\Robust.Server.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj" />
|
|
<ProjectReference Include="..\Robust.UnitTesting\Robust.UnitTesting.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
|
|
<!-- Needed to pin transitive dependency versions. -->
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" />
|
|
<PackageReference Include="System.Formats.Asn1" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
</Project>
|