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