mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Robust.UnitTesting was both ALL tests for RT, and also API surface for content tests. Tests are now split into separate projects as appropriate, and the API side has also been split off.
21 lines
604 B
XML
21 lines
604 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\MSBuild\Robust.Engine.props"/>
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsTestingPlatformApplication>false</IsTestingPlatformApplication>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations"/>
|
|
<PackageReference Include="NUnit"/>
|
|
<PackageReference Include="NUnit.Analyzers"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Robust.Shared.Maths\Robust.Shared.Maths.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\MSBuild\Robust.Properties.targets"/>
|
|
</Project>
|