| 123456789101112131415161718192021222324 |
- <Project Sdk="MSTest.Sdk/3.6.4">
- <PropertyGroup>
- <TargetFramework>net481</TargetFramework>
- <LangVersion>latest</LangVersion>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <!--
- Displays error on console in addition to the log file. Note that this feature comes with a performance impact.
- For more information, visit https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#show-failure-per-test
- -->
- <TestingPlatformShowTestsFailure>true</TestingPlatformShowTestsFailure>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.CodeAnalysis.CSharp.Analyzer.Testing.MSTest" Version="1.1.2" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\src\System.Reactive.MakeRefAssemblies\System.Reactive.MakeRefAssemblies.csproj" />
- <ProjectReference Include="..\System.Reactive.Analyzers\System.Reactive.Analyzers.csproj" />
- </ItemGroup>
- </Project>
|