dotnet aspnet-codegenerator area

dotnet aspnet-codegenerator area --help

eg@debian:/media/eg/data/DotnetCliExamples/ExampleSolution/ExampleSolution.Mvc1$ dotnet aspnet-codegenerator area --help


Usage: aspnet-codegenerator [arguments] [options]

Arguments:
  generator  Name of the generator. Check available generators below.

Options:
  -p|--project             Path to .csproj file in the project.
  -n|--nuget-package-dir   
  -c|--configuration       Configuration for the project (Possible values: Debug/ Release)
  -tfm|--target-framework  Target Framework to use. (Short folder name of the tfm. eg. net46)
  -b|--build-base-path     
  --no-build               

Selected Code Generator: area

Generator Arguments:
  Name : Name of the Area to generate


RunTime 00:00:00.97

dotnet aspnet-codegenerator area Admin

eg@debian:/media/eg/data/DotnetCliExamples/ExampleSolution/ExampleSolution.Mvc1$ dotnet aspnet-codegenerator area Admin
Building project ...
Finding the generator 'area'...
Running the generator 'area'...
RunTime 00:00:06.04

Last updated