System.Reactive.Analyzers.Test.csproj 984 B

123456789101112131415161718192021222324
  1. <Project Sdk="MSTest.Sdk/3.6.4">
  2. <PropertyGroup>
  3. <TargetFramework>net481</TargetFramework>
  4. <LangVersion>latest</LangVersion>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <!--
  8. Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
  9. For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
  10. -->
  11. <TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.MSTest" Version="1.1.2" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\src\System.Reactive.MakeRefAssemblies\System.Reactive.MakeRefAssemblies.csproj" />
  18. <ProjectReference Include="..\System.Reactive.Analyzers\System.Reactive.Analyzers.csproj" />
  19. </ItemGroup>
  20. </Project>