ApiCompare.csproj 604 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <!-- You wouldn't think we'd need this with an Exe, but it seems this is getting published as a package without this! -->
  6. <IsPackable>false</IsPackable>
  7. <TargetFramework>net6.0</TargetFramework>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="System.Reactive" Version="6.0.0-preview.1" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\System.Reactive.Async\System.Reactive.Async.csproj" />
  14. </ItemGroup>
  15. </Project>