mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
Fixes #1434 This means that adding support for new architectures (e.g. ARM) is MUCH easier. It removes download_natives.py which simplifies the build process. It's also way less painful to maintain.
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\MSBuild\Robust.Engine.props" />
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<OutputPath>../bin/UnitTesting</OutputPath>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<Import Project="..\MSBuild\Robust.DefineConstants.targets" />
|
|
<ItemGroup>
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
|
|
<PackageReference Include="Castle.Core" Version="4.4.1" />
|
|
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" />
|
|
<PackageReference Include="Microsoft.CodeCoverage" Version="16.8.0" />
|
|
<PackageReference Include="Microsoft.DotNet.RemoteExecutor" Version="6.0.0-beta.20562.2" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
|
|
<PackageReference Include="Moq" Version="4.15.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
|
<PackageReference Include="NUnit.ConsoleRunner" Version="3.11.1" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="0.6.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Lidgren.Network\Lidgren.Network.csproj" />
|
|
<ProjectReference Include="..\Robust.Physics\Robust.Physics.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
|
|
<ProjectReference Include="..\Robust.Shared\Robust.Shared.csproj" />
|
|
<ProjectReference Include="..\Robust.Client\Robust.Client.csproj" />
|
|
<ProjectReference Include="..\Robust.Server\Robust.Server.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Shared\ContentPack\ZipTest.zip">
|
|
<LogicalName>Robust.UnitTesting.Shared.ContentPack.ZipTest.zip</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<Import Project="..\MSBuild\Robust.Engine.targets" />
|
|
</Project>
|