来自 Windows Store 应用程序或 Profile7 PCL 的面向 .NET Standard 的参考库?

Reference library targeting .NET Standard from a Windows Store app or Profile7 PCL?

doc page 表示面向 .NET Standard 的库可以引用 "profile-based PCL"。但反过来呢? Profile 7 PCL 可以引用针对 .NET Standard(任何版本)的库吗?

此外,Windows Store (Windows 8.1) 应用程序可以引用仅针对 .NET Standard 的库吗?

Can a Profile 7 PCL reference a library targeting .NET Standard (any version)?

你可以参考@Adam Pedly Microsoft MVP (Xamarin) 写的this article:

" 请记住,一旦您拥有 .NET 标准库,基于配置文件 PCL 就无法引用它,因此您需要将链上的所有内容转换为.NET 标准."

更新:

检查 doc,查看支持 .NET 标准库的完整 .NET 运行时集。所以如果你想在Windows 8.1项目中引用它,你可以针对.NET Standard 1.2,它提供的功能比.NET Standard 1.6版本少(例如没有System.Net.Sockets)。