Let's say I have two project in one solution
- WebApi: A WebApi project that provides access points for all api services
- Core: A library project where business Logic defined here, including system model.
For each WebApi request, it uses ModelState to check if the model was valid and then pass the request to the business model defined in the Core library to get result.
I wanted to have automatic API documentation so I configured the WebApi project to generate XML document and the HelpPage module did perfectly as expected, except when it comes to models that's defined in the Core.dll, it's left blank.
I wonder if there's any workaround that could make the HelpPage module "recognize" XML documentations outside the WebApi project?