2019-05-03 13:34:49 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
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>
|
2024-02-23 05:02:59 +01:00
|
|
|
|
<LangVersion>12</LangVersion>
|
2019-05-28 00:18:29 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
2024-01-12 23:22:01 +01:00
|
|
|
|
<PackageReference Include="NUnit" />
|
|
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
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>
|
2023-03-06 20:38:07 +01:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
2023-07-05 21:54:25 -07:00
|
|
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.CompNetworkGenerator.targets" />
|
2019-05-03 13:34:49 +02:00
|
|
|
|
</Project>
|