For some strange reason, StyleCop does not follow my documentation rules. Consider the following code:
internal class SomeClass { public SomeClass() { } public SomeMethod() { } public SomeProperty { get; set; } }
And the following settings:
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.DocumentationRules"> ... <AnalyzerSettings> <BooleanProperty Name="IgnorePrivates">True</BooleanProperty> <BooleanProperty Name="IgnoreInternals">True</BooleanProperty> </AnalyzerSettings> </Analyzer> ...
I get the following stylecop 4.4 form messages
- SA1600: the class must have a documentation title.
- SA1600: The constructor must have a documentation title.
- SA1600: The method must have a documentation title.
- SA1600: Property must have a title of documentation.
Is this a bug or function? Should inner classes be ignored?
source share