0

how to configure stylecop or resharper to NOT add meaningless comments when doing "cleanup code"??

OK (KEEP/NICE TO HAVE):

have region tags:

#region Public Properties

REMOVE:

    /// <summary>
    /// Gets or sets the description.
    /// </summary>

OR

    /// <summary>
    /// The _context.
    /// </summary>
    private static HttpContextBase _context;
ShaneKm
  • 20,823
  • 43
  • 167
  • 296
  • Those aren't "meaningless comments" - you're meant to fill them in with information about your objects. Information in the summary tags is what is seen by consumers of your objects in intellisense, etc. – J... Feb 08 '13 at 11:29
  • understood. but i still need to remove it. thanks – ShaneKm Feb 08 '13 at 11:36

1 Answers1

0

Under Reshaper->Options->Tools->Code Cleanup, modify or create a new cleanup profile and de-select all the Stylecop->Documentation items:

enter image description here

Piers Myers
  • 10,611
  • 6
  • 46
  • 61