itsbalur
itsbalur

Reputation: 1002

How to find uncommented public methods using Resharper

I am using Resharper 7.1 with Visual Studio 2010. Is there a way to find all uncommented (without method summary and parameter descriptions) public methods through the entire solution?

Upvotes: 3

Views: 1428

Answers (2)

Igal Tabachnik
Igal Tabachnik

Reputation: 31548

You could do this with the Agent Smith plugin for ReSharper. I wrote about how to do it a long time ago in my blog, but honestly I don't know if this method still works. You can read about it here: http://hmemcpy.com/2010/11/documenting-your-public-api-easily-with-resharper-and-ghostdoc/

Looks like there's a version of Agent Smith plugin available for ReSharper 7.1, so you might be in luck!

Upvotes: 2

SLaks
SLaks

Reputation: 887453

You don't need Resharper for this.

Simply check "Generate XML documentation file" in the build tab in project properties, and the compiler will warn you about every missing comment.

Upvotes: 6

Related Questions