Is it possible to generate this type of API documentation with Doxygen. If so how?
I do have all my controllers XML commented.
Is it possible to generate this type of API documentation with Doxygen. If so how?
I do have all my controllers XML commented.
HelpPage, by default, uses
XmlDocumentationProvider
(which depends on the default .net generated documentation) which implementsSystem.Web.Http.Description.IDocumentationProvider
...You can create a custom IDocumentationProvider and where you can read the documentation generated by Doxygen...After creating this custom provider, you can replace the default one inHelpPageConfig.cs
...