Swashbuckle currently recommends to use xml comments instead of attributes: Before ```cs [ProducesResponseType(200)] // either ASP.NET Core built-in [SwaggerResponse(200)] // or Swashbuckle ``` After ````cs /// <response code="200">Success.</response> ```` Problem is the `API1000` doesn't recognise the xml comments, and complains: > Action method returns undeclared status code '200' It would be nice to have an analyser for this in this library, if possible?