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

Commit 594400d

Browse files
authored
Fix version of System.Runtime.Intrinsics.Experimental (#19260)
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.
1 parent c93ca7f commit 594400d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/src/Common/test_dependencies/test_dependencies.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@
2222
<PackageReference Include="System.Security.Permissions">
2323
<Version>$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)</Version>
2424
</PackageReference>
25+
<!-- If we ever service this package, update this version manually. -->
2526
<PackageReference Include="System.Runtime.Intrinsics.Experimental">
26-
<Version>$(MicrosoftPrivateCoreFxNETCoreAppPackageVersion)</Version>
27+
<Version>4.5.0-rtm</Version>
2728
</PackageReference>
2829
</ItemGroup>
2930
<PropertyGroup>

0 commit comments

Comments
 (0)