c# - Resharper indenting the XML documentation text on code cleanup? -


i using resharper 7.1 stylecop plugin.

i not sure if bug, but, confused because code cleanup behaves differently when text selected prior cleanup operation.

if simple code cleanup on c# source file, here xml documentation :

/// <summary> /// summary /// </summary> /// <param name="sender"> /// sender. /// </param> /// <param name="e"> /// e. /// </param> 

however, if select xml text , launch code cleanup on selected text, take @ how code cleanup has indented text between tags :

/// <summary> ///     summary /// </summary> /// <param name="sender"> ///     sender. /// </param> /// <param name="e"> ///     e. /// </param> 
  • what real stylecop way of generating xml documentation ? indented text or not ?

  • how can configure resharper avoid or force indentation ?

in resharper 8.0 (latest eap) without stylecop, go resharper | option -> code editing | xml doc comments | formatting style, , in section tag content find 2 options named indent inside element.... set them no indent @ all avoid indentation. don't know if work stylecop.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -