I am using Visual Studio 2015 and trying to install the dependencies for scaffolding my databases classes. This is the Project.json:
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.EntityFrameworkCore.SqlServer": "1.0.1",
"Microsoft.EntityFrameworkCore.SqlServer.Design": "1.0.1",
"Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
"NETStandard.Library": "1.6.0"
},
"frameworks": {
"netstandard1.6": {
"imports": "dnxcore50"
}
},
"tools": {
"Microsoft.EntityFrameworkCore.Tools": {
"version": "1.0.0-preview2-final",
"imports": "net451"
}
}
}
However, the Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final is not installed, stating this error:
How to resolve this issue?