System.Interactive.Tests.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <!-- See NetCore31TestReadme.txt for why we still use netcoreapp3.1 -->
  4. <TargetFrameworks>net48;net8.0;net6.0;netcoreapp3.1</TargetFrameworks>
  5. <!--
  6. CA1822: Make member static. Not necessary for test code.
  7. CA1861: Extract constant arrays to 'static readonly' fields. With these tests we generally prioritize readability over performance.
  8. -->
  9. <NoWarn>$(NoWarn);CS0618;CS8603;CS8625;CA1822;CA1861</NoWarn>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Content Include="xunit.runner.json">
  13. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  14. </Content>
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\System.Interactive.Providers\System.Interactive.Providers.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
  21. <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
  22. <PackageReference Include="FluentAssertions" Version="6.4.0" />
  23. <PackageReference Include="xunit" Version="2.4.1" />
  24. </ItemGroup>
  25. </Project>