I am following the Step by Step Principles of the Entity Framework . At some point he speaks
find the tool section and add the Microsoft.EntityFrameworkCore.Tools.DotNet Package as shown below.
project.json:
"tools": {
"Microsoft.EntityFrameworkCore.Tools.DotNet": "1.0.0-preview3-final",
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
},
As I understand it, project.json is gone now. So where should I add this value? Project file?
source
share