How to use the latest network core in the universal Windows class library?

I would like to use the latest .NET Core in the new universal Windows class library.

However, when creating a new library in VS2015, the System.Net.Sockets.Socket API is not updated. In particular, I want this commit: https://github.com/dotnet/corefx/pull/4079/files

My project.json looks like this:

 { "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": {} } } 
+7
c # visual-studio-2015 win-universal-app .net-core
source share
1 answer

You can try updating this package using your nightly channel: https://dotnet.myget.org/gallery/dotnet-core

+4
source share

All Articles