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

Commit d6736ce

Browse files
committed
Permit version mismatches during package testing for incremented ref assms
We're walking the closure of packages that build on top of netcoreapp2.1. Those build using live references but the current package testing infrastructure tests against an LKG framework package. As a result when we bump reference versions every package will see a break until we get an updated LKG with the new reference assemblies. Once we have a new Microsoft.NETCore.App we can remove this closure exception.
1 parent 7367c0c commit d6736ce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

pkg/test/frameworkSettings/netcoreapp2.1/settings.targets

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,12 @@
66
<!-- use the most recent MS.NETCore.App we have from upstack -->
77
<RuntimeFrameworkVersion>$(MicrosoftNETCoreAppPackageVersion)</RuntimeFrameworkVersion>
88
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<!-- Temporarily suppress checking closure of Memory and Threading.Tasks.Extensions
12+
These wil fail until we get an updated Microsoft.NETCore.App.
13+
https://github.com/dotnet/corefx/issues/29249 -->
14+
<IgnoredReference Include="System.Memory" />
15+
<IgnoredReference Include="System.Threading.Tasks.Extensions" />
16+
</ItemGroup>
917
</Project>

0 commit comments

Comments
 (0)