What populates the Webapi
method\'s description on the helper page and the introduction paragraph?
For those of you using VB.NET, you seem to have to do it a little differently.
You have to go to the "Compile" tab (there is no Build tab) for the Web API project, then ensure "Generate XML documentation file" checkbox is checked.
The output actually gets put in /bin/{projectName}.xml, so now you have to change the SetDocumentationProvider
call to point to the path "~/bin/{projectname}.xml" (obviously, replace {projectname} with your actual project name).
This seems smelly, so please let me know if anybody finds a different way to do it.