mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
* Dependencies update & cleanup Fixes security vuln warnings etc * Remove ILReader dependency RIP in piss FastAccessors.
26 lines
993 B
XML
26 lines
993 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" />
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
|
|
|
|
<!-- Needed to pin transitive dependency versions. -->
|
|
<PackageReference Include="System.Text.Json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
</Project>
|