Content.Tests.csproj 1.4 KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
  4. <TargetFramework>$(TargetFramework)</TargetFramework>
  5. <LangVersion>12</LangVersion>
  6. <IsPackable>false</IsPackable>
  7. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  8. <OutputPath>..\bin\Content.Tests\</OutputPath>
  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="..\RobustToolbox\Robust.Client\Robust.Client.csproj" />
  20. <ProjectReference Include="..\RobustToolbox\Robust.Server\Robust.Server.csproj" />
  21. <ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj" />
  22. <ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj" />
  23. <ProjectReference Include="..\RobustToolbox\Robust.UnitTesting\Robust.UnitTesting.csproj" />
  24. </ItemGroup>
  25. <Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
  26. </Project>