Content.IntegrationTests.csproj 1.5 KB

12345678910111213141516171819202122232425262728
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  4. <TargetFramework>$(TargetFramework)</TargetFramework>
  5. <OutputPath>..\bin\Content.IntegrationTests\</OutputPath>
  6. <IsPackable>false</IsPackable>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <LangVersion>12</LangVersion>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="NUnit" />
  12. <PackageReference Include="NUnit3TestAdapter" />
  13. <PackageReference Include="Microsoft.NET.Test.Sdk" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Content.Client\Content.Client.csproj" />
  17. <ProjectReference Include="..\Content.Server\Content.Server.csproj" />
  18. <ProjectReference Include="..\Content.Shared\Content.Shared.csproj" />
  19. <ProjectReference Include="..\Content.Tests\Content.Tests.csproj" />
  20. <ProjectReference Include="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
  21. <ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
  22. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  23. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  24. <ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
  25. </ItemGroup>
  26. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  27. <Import Project="..\RobustToolbox\MSBuild\Robust.CompNetworkGenerator.targets" />
  28. </Project>