Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix version of System.Runtime.Intrinsics.Experimental (#19260)
Browse files Browse the repository at this point in the history
Since there is no servicing version for this package, the 2.1 build was upgrading
to an incompatible 4.6 prerelease which caused test build breaks.

This package is only needed to build tests. We don't expect to service it
for 2.1, given it was an experemental prerelease package.

So fix its version at 4.5.0-rtm.

Closes #19138.
  • Loading branch information
AndyAyersMS authored Aug 3, 2018
1 parent c93ca7f commit 594400d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/src/Common/test_dependencies/test_dependencies.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
<PackageReference Include="System.Security.Permissions">
<Version>$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)</Version>
</PackageReference>
<!-- If we ever service this package, update this version manually. -->
<PackageReference Include="System.Runtime.Intrinsics.Experimental">
<Version>$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)</Version>
<Version>4.5.0-rtm</Version>
</PackageReference>
</ItemGroup>
<PropertyGroup>
Expand Down

0 comments on commit 594400d

Please sign in to comment.