How to reproduce
In Visual Studio 2019 RTM, create a new .NET Standard library, and set the target framework to ".NET Standard 2.1". Then add a reference to System.IO.Pipelines (either the lastest stable version 4.5.3 or beta version 4.6.0-preview3-191128.7).
Error message
The type System.ReadOnlySpan<T> (or other types defined in System.Memory assembly) is defined in both System.Memory, version=4.0.1.0 and netstandard, version=2.1.0.0.
Comments
Maybe the reference list of System.IO.Pipelines assembly under netstd 2.1 should be updated in order to fix this problem, and many thanks~
How to reproduce
In Visual Studio 2019 RTM, create a new .NET Standard library, and set the target framework to ".NET Standard 2.1". Then add a reference to
System.IO.Pipelines(either the lastest stable version4.5.3or beta version4.6.0-preview3-191128.7).Error message
The type
System.ReadOnlySpan<T>(or other types defined inSystem.Memoryassembly) is defined in bothSystem.Memory, version=4.0.1.0andnetstandard, version=2.1.0.0.Comments
Maybe the reference list of
System.IO.Pipelinesassembly under netstd 2.1 should be updated in order to fix this problem, and many thanks~