I am having issues creating a .NET Core 1.1 Web Application. I've found postings outlining similar issues other people have had, but they either have a slightly different issue, or have an accepted answer that didn't work for me, or that doesn't have enough details for me to actually implement. I'm going to post step-by-step what I have installed and what I'm doing to create the application, and hopefully someone can tell me what I'm doing wrong.
I have Microsoft Visual Studio Professional 2015 with Update 3 installed:
I've installed the .NET Core 1.1 SDK:
I’ve also installed the tools (Preview 2) for .NET Core 1.1 for Visual Studio 2015:
I opened Visual Studio 2015 and created a new Web API project targeting .NET Core:
I modified the solution's global.json to target .NET Core 1.1:
I modified the project.json to target .NET Core 1.1:
I ran Update-Package in the package manager console:
I ran "dotnet restore" in the package manager console:
And here I can see things going wrong...I'm getting a bunch of "Unable to resolve" errors...which, of course, means my subsequent "dotnet build" action fails:
So...why is it failing to find the dependencies. And/or, what exactly do I do to fix this? Any help would be appreciated.








