Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to switch off Resharper check for XML commets? [duplicate]

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).

like image 774
Rasto Avatar asked Apr 24 '11 23:04

Rasto


1 Answers

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

like image 117
Evgeny Pasynkov Avatar answered Nov 02 '22 08:11

Evgeny Pasynkov