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-03-29 18:10:51 +0300
committerEric St. John <ericstj@microsoft.com>2018-03-30 00:58:34 +0300
commite449875413a846cbbeb84e0e23e0f988de31e8e7 (patch)
tree24f8c7ba0fbeb5c773cbe910e72a80d75507198e /pkg
parent1c6f2fa2845716aadbcab66a07a575a44fa6ad47 (diff)
Permit cycles in netstandard when testing OOB packages
Diffstat (limited to 'pkg')
-rw-r--r--pkg/test/frameworkSettings/netcoreapp/settings.targets4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/test/frameworkSettings/netcoreapp/settings.targets b/pkg/test/frameworkSettings/netcoreapp/settings.targets
index 0549791780..628d07c1db 100644
--- a/pkg/test/frameworkSettings/netcoreapp/settings.targets
+++ b/pkg/test/frameworkSettings/netcoreapp/settings.targets
@@ -15,5 +15,9 @@
<!-- intentionally dangling refs in shims -->
<ExcludeFromClosure Include="@(NetFxReference)" />
<IgnoredReference Include="@(NetFxReference)" />
+
+ <!-- netstandard will have cycles because OOB packages target netstandard and are used in netstandard closure,
+ We do ensure that netstandard inside the shared framework has no cycles, but we permit them in packages in order to allow for simpler netstandard-based builds.-->
+ <IgnoredReference Include="netstandard" />
</ItemGroup>
</Project> \ No newline at end of file