10

Possible Duplicate:
missing xml comment for publicly visible type or member

I don't know how I did it but suddenly Resharper is underlying all public methods (blue underline) and classes saying Missing XML comment for publicly visible... followed by class or member and name. How (and where) can is disable this ? Cannot find it in Resharpers options (I have tried ReSharper -> Options -> Inspection Severity).

Community
  • 1
  • 1
Rasto
  • 17,204
  • 47
  • 154
  • 245
  • 1
    This is most probably because you have turned on "generate xml documentation" in the project properties. – adrianbanks Apr 24 '11 at 23:33
  • I have voted to close this question as duplicate (of the question linked by Jon). Please consider checking the linked question and voting. – Rasto Apr 24 '11 at 23:40

1 Answers1

20

ReSharper checks for current build settings if generation on XML-doc file is enabled during build. If XML generation is disabled, this warning will not be fired. Otherwise, C# compiler will fire that warning (CS1591), and thus ReSharper will fire it too

Evgeny Pasynkov
  • 693
  • 4
  • 5