2019-05-03 13:34:49 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-06-29 16:56:17 +02:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<PropertyGroup>
|
2019-08-03 15:07:47 +02:00
|
|
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<OutputPath>..\bin\Content.IntegrationTests\</OutputPath>
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2019-12-17 16:09:10 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</PropertyGroup>
|
2019-06-29 16:56:17 +02:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.DefineConstants.targets" />
|
2019-05-28 00:18:29 +02:00
|
|
|
|
<ItemGroup>
|
2019-06-29 01:58:16 +02:00
|
|
|
|
<PackageReference Include="NUnit" Version="3.12.0" />
|
2020-01-20 20:44:36 +01:00
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
2019-06-29 01:58:16 +02:00
|
|
|
|
<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="..\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" />
|
|
|
|
|
|
<ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</ItemGroup>
|
2019-06-29 16:56:17 +02:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Engine.targets" />
|
2020-01-23 00:45:49 +01:00
|
|
|
|
<Target Name="ContentAfterBuild" DependsOnTargets="ClientAfterBuild" AfterTargets="Build" />
|
2019-05-03 13:34:49 +02:00
|
|
|
|
</Project>
|