I have a controller class (doesn't derive directly from ApiController) that has an XML comment:
/// <summary> /// The controller groups together all methods related to Trial Subscription Management. /// </summary> [RoutePrefix("api/v1")] public class TrialsController : TraceableApiController { ... } I can see the controller on the Swagger documentation page but the XML comment describing the controller is missing.
Is it possible to include the comment that describes the controller and if so, what do I have to do ?
