I added Help Pages to my Web API project. However most of the documentation does not show on the help pages because:
- the objects used as parameter types and return types are defined in a separate assembly/project, and
- documentation for the controllers' actions are defined in separate interfaces implemented by the controllers. Also, these interfaces are in a separate assembly/project.
An overview of my solution structure:
- Web API project
- Class library with data objects (used as parameter types and return types in controller actions)
- Class library with controller interfaces (implemented by each controller)
Is it possible for Help Pages to a) incorporate XML documentation from separate projects, and b) apply the XML documentation from an interface to the class that implements it?