如何在通用Windows类库中使用最新的网点核心?

我想在新的通用Windows类库中使用最新的.NET Core。

然而,在VS2015中创建一个新的库, System.Net.Sockets.Socket API似乎没有更新。 特别是我想要这个提交:https://github.com/dotnet/corefx/pull/4079/files

我的project.json如下所示:

{
  "dependencies": {
    "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0"
  },
  "frameworks": {
    "uap10.0": {}
  },
  "runtimes": {
    "win10-arm": {},
    "win10-arm-aot": {},
    "win10-x86": {},
    "win10-x86-aot": {},
    "win10-x64": {},
    "win10-x64-aot": {}
  }
}

您可以尝试使用夜间提要升级该软件包:https://dotnet.myget.org/gallery/dotnet-core

链接地址: http://www.djcxy.com/p/90777.html

上一篇: How to use latest dot net core in Universal Windows Class Library?

下一篇: How to detect copy to clipboard functionality before using it