In running the XMLComment rule, the following code:
''' <summary>
''' Gets the maximum line count.
''' </summary>
''' <value>The maximum line count.</value>
''' <remarks></remarks>
Public MustOverride ReadOnly Property MaximumLineCount() As Integer Implements IMB.MaximumLineCount
results in a 'Externally visible types and members should have XML comments' Warning.
It does not happen on all members, but does for 478 of them. Most often they are MustOverride, or Interfaces, with no code associated with them, but not always. There are a few properties with valid code that are reporting this need, also.
I am using version 1.6.09151.
Thank you.