1

How do I run MvcScaffold in an area in asp.net mvc3? Is it even possible? I would like to execute something like:

Scaffold Controller MyModel --area MyArea
Tomas Jansson
  • 22,767
  • 13
  • 83
  • 137

1 Answers1

1

just use one dash instead -Area

-Area : If you want the generated files to go into a specific ASP.NET MVC area, enter its name here. Note that you must have created that area already; the scaffolder doesn’t create areas automatically (yet).

Source

Major Byte
  • 4,101
  • 3
  • 26
  • 33