dotnet-helper
v0.0.7
Published
A CLI that helps to scaffolding items in .Net Core.
Downloads
5
Readme
dotnet-helper CLI
A CLI that helps to scaffolding items in .Net Core.
Commands
dotnet-helper generate-controller (dotnet-helper gc)
Generates a controller of the specified type with the specified name in the namespace of the project. Must be in a folder with a valid .csproj file. (If more than 1 is found, will be used the first name)
dotnet-helper gc type name
Example:
dotnet-helper gc api Customer
This will generate an API Controller with the name CustomerController in namespace NameOfTheProject
Under Development
This is currently under development. Until now we have only the API
Controller to scaffold