nemo_87
nemo_87

Reputation: 4791

Automatically add help page in empty ASP.NET WebApi project

I've created an empty ASP.NET Web API project and I've been working on it for some time. At the beginning I wasn't thinking that I would eventually need a help page and APIs description. Is there any way to add this page automatically in an empty ASP.NET Web API project or will I have to create a new project or find some other work around?

I want to have this page with my APIs.

enter image description here

Upvotes: 0

Views: 935

Answers (1)

Jos Vinke
Jos Vinke

Reputation: 2714

You can simply add the Microsoft ASP.NET Web API Help Page Nuget Package to your project and the help pages will be automatically generated.

For more info see: Creating Help Pages for ASP.NET Web API

Upvotes: 2

Related Questions