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

Commit fd04b17

Browse files
committed
Permit type overlap between System.Memory and S.P.Corelib on netcoreapp2.0
In netcoreapp2.0 the types in CoreLib were experimental and should not be exposed by System.Memory.
1 parent 5f26635 commit fd04b17

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<ItemGroup Condition="'$(RuntimeIdentifier)' != ''">
4+
<!-- NETCoreApp2.0 had experimental versions of Span and ReadOnlySpan
5+
which we don't match the final API nor were they ship-quality -->
6+
<IgnoredTypes Include="System.ReadOnlySpan`1" />
7+
<IgnoredTypes Include="System.Span`1" />
8+
</ItemGroup>
9+
</Project>

0 commit comments

Comments
 (0)