floatingfrisbee
floatingfrisbee

Reputation: 938

Tool for generating the ASP.NET MVC Controller/Action interface?

Is there some tool I can use to document (i.e. generate HTML or XML docs for) my ASP.NET MVC 3 application's controller/action/datatypes interface?

Upvotes: 1

Views: 124

Answers (2)

RailRhoad
RailRhoad

Reputation: 2128

You can give Sandcastle a shot

Upvotes: 2

Tae-Sung Shin
Tae-Sung Shin

Reputation: 20643

MVCScaffolding ( http://blog.stevensanderson.com/2011/01/13/scaffold-your-aspnet-mvc-3-project-with-the-mvcscaffolding-package/) can generate anything in ASP.NET MVC. Its power is template customization which generates not only necessary actions but also views, models, and so on as you exactly want.

Upvotes: 2

Related Questions