We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I think in the article Your First ASP.NET 5 Web App Using Visual Studio https://github.com/aspnet/Docs/blob/master/aspnet/tutorials/your-first-aspnet-application.rst#add-scaffolding, could be mentioned that project.json needs to have Microsoft.Extensions.CodeGenerators.Mvc to see the option New Scaffoled Item... not sure if the additional packages are also not required according this aspnet/Tooling#290 (comment).
Microsoft.Extensions.CodeGenerators.Mvc
Also here in this article Adding a model https://github.com/aspnet/Docs/blob/master/aspnet/tutorials/first-mvc-app/adding-model.rst#scaffolding-a-controller
Thanks :)
The text was updated successfully, but these errors were encountered:
The first tutorial was removed: 9b6065a
Sorry, something went wrong.
Add dependencies:
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": { "version": "1.0.0-preview2-21343", "type": "build" }, "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": { "version": "1.0.0-preview2-21343", "type": "build" } "Microsoft.EntityFrameworkCore.Design": { "version": "1.0.0-preview2-21343", "type": "build" },
Add tools entries:
"Microsoft.VisualStudio.Web.CodeGeneration.Tools": { "version": "1.0.0-preview2-21343", "imports": [ "portable-net45+win8+dnxcore50", "portable-net45+win8" ] } "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-21343",
Add UseDatabaseErrorPage "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0-rc3-21343",
"Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "1.0.0-rc3-21343",
Add /Views/Shared/_ValidationScriptsPartial.cshtml
/Views/Shared/_ValidationScriptsPartial.cshtml
We explain this now in https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/adding-model
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Hi,
I think in the article Your First ASP.NET 5 Web App Using Visual Studio https://github.com/aspnet/Docs/blob/master/aspnet/tutorials/your-first-aspnet-application.rst#add-scaffolding, could be mentioned that project.json needs to have
Microsoft.Extensions.CodeGenerators.Mvc
to see the option New Scaffoled Item... not sure if the additional packages are also not required according this aspnet/Tooling#290 (comment).Also here in this article Adding a model https://github.com/aspnet/Docs/blob/master/aspnet/tutorials/first-mvc-app/adding-model.rst#scaffolding-a-controller
Thanks :)
The text was updated successfully, but these errors were encountered: