Merge pull request #25371 from dotnet/johluo/add-baseline-suppression

Suppress baseline reference of Microsoft.AspNetCore.SpaServices
This commit is contained in:
John Luo 2020-08-28 12:12:53 -07:00 committed by GitHub
commit e272a00bcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -15,4 +15,11 @@
<InternalsVisibleTo Include="Microsoft.AspNetCode.SpaServices.Extensions.Tests" />
</ItemGroup>
<ItemGroup Condition=" '$(AspNetCoreMajorMinorVersion)' == '5.0' ">
<!--
Dependency (now in shared Fx and a transitive ref for netstandard2.x) was removed in 5.0. Suppression can be
removed after 5.0 RTM is released.
-->
<SuppressBaselineReference Include="Microsoft.AspNetCore.SpaServices" />
</ItemGroup>
</Project>