Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorEric St. John <ericstj@microsoft.com>2018-04-21 01:29:42 +0300
committerEric St. John <ericstj@microsoft.com>2018-04-21 01:29:42 +0300
commitd6736ce48e33ae73c6b7b83004a8028e2a814b81 (patch)
tree668dd4cb39f1073f4d53fecd3c83f837072dfa6d /pkg
parent7367c0c13aa129475a396db3ef72c1c64f321fb7 (diff)
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.
Diffstat (limited to 'pkg')
-rw-r--r--pkg/test/frameworkSettings/netcoreapp2.1/settings.targets8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/test/frameworkSettings/netcoreapp2.1/settings.targets b/pkg/test/frameworkSettings/netcoreapp2.1/settings.targets
index 949dc4c30a..216e0446db 100644
--- a/pkg/test/frameworkSettings/netcoreapp2.1/settings.targets
+++ b/pkg/test/frameworkSettings/netcoreapp2.1/settings.targets
@@ -6,4 +6,12 @@
<!-- use the most recent MS.NETCore.App we have from upstack -->
<RuntimeFrameworkVersion>$(MicrosoftNETCoreAppPackageVersion)</RuntimeFrameworkVersion>
</PropertyGroup>
+
+ <ItemGroup>
+ <!-- Temporarily suppress checking closure of Memory and Threading.Tasks.Extensions
+ These wil fail until we get an updated Microsoft.NETCore.App.
+ https://github.com/dotnet/corefx/issues/29249 -->
+ <IgnoredReference Include="System.Memory" />
+ <IgnoredReference Include="System.Threading.Tasks.Extensions" />
+ </ItemGroup>
</Project> \ No newline at end of file