I'm doing a project and following tutorial ASP.NET Core Fundamentals on Pluralsight. However, the instructor recorded this using ASP.NET MVC 5, so sometimes there are some differences.
I'm on the stage of configuration project.json so I can use Entity Framework, but it doesn't work. Commands are recognizable by cmd, but I have the information
The specified framework 'Microsoft.NETCore.App', version '1.0.0-rc2-3002702' was not found. - Check application dependencies and target a framework version installed at: C:\Program Files\dotnet\shared\Microsoft.NETCore.App - The following versions are installed: 1.0.0 - Alternatively, install the framework version '1.0.0-rc2-3002702'.
I have installed this version of framework, and I have warning that Microsoft.EntityFramework.Tools and Microsoft.EntityFramework.Design expect version of Microsoft.NETCore.App 1.0, but when i change it I still have same mistake.
Here is link to my project.json code: http://pastebin.com/g0TDqykY It takes a lot of time to restore packages again and again on my PC.. Any ideas what should I do to make it work?