System.Interactive.Tests.csproj 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net48;net10.0;net8.0</TargetFrameworks>
  4. <!--
  5. CA1822: Make member static. Not necessary for test code.
  6. CA1861: Extract constant arrays to 'static readonly' fields. With these tests we generally prioritize readability over performance.
  7. -->
  8. <NoWarn>$(NoWarn);CS0618;CS8603;CS8625;CA1822;CA1861</NoWarn>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <Content Include="xunit.runner.json">
  12. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  13. </Content>
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\System.Interactive.Providers\System.Interactive.Providers.csproj" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
  20. <PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
  21. <PrivateAssets>all</PrivateAssets>
  22. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  23. </PackageReference>
  24. <PackageReference Include="FluentAssertions" Version="6.4.0" />
  25. <PackageReference Include="xunit" Version="2.9.3" />
  26. </ItemGroup>
  27. </Project>