Visual Studio 2015 (with the support for .NET Core added on) gives you the option of creating a .NET Core library, or a .NET Core console app. If you do so, and look at the project's .json file, it looks like it's "limiting" you to the api defined by NetStandardLibrary 1.6:
{
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.6.0",
"Newtonsoft.Json": "9.0.1"
},
"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
}
}
}
My understanding is that .net core 1.0 actually has a larger api than NetStandardCore, so why is VS 2015 defaulting your app to only accessing the api's specified in the NetStandardLibrary 1.6?