Based on a class that is used in entity framework I'd like to be able to scaffold other targets than those already present. (mvc controllers, api controllers, views etc.)
For a class Person
i would like to be able to generate files like (in my example it would be files for Angular 7)
person.d.ts
person.service.ts
person.component.ts
person.component.html
There does not seem to be any guides on how to add more scaffolding targets, or mayby these guides are hidden by google behind advice on how to modify existing cshtml templates.
To be a bit more specific I'd like to be able to add a menu item on this menu:
Let us call it "Angular Component" similar to "Controller"
And then when choosing it you will get a similar menu to this (without the controller parts):
and then be able to create a model, service, component and html template based on the Entity Framework class.