I can get the help pages to render using the traditional asp.net engine, but how can I get the same thing when hosting the Web API service on OWIN/katana.
I tried adding HelpPageConfig.Register(config);
to class Startup
to no avail.
I can get the help pages to render using the traditional asp.net engine, but how can I get the same thing when hosting the Web API service on OWIN/katana.
I tried adding HelpPageConfig.Register(config);
to class Startup
to no avail.
Have you tried adding the following code inside the Configure() method in Startup.cs?
AreaRegistration.RegisterAllAreas();