I am using Resharper 7.1 with the StyleCop plugin.
I am not sure if this is a bug, but, I am confused because the code cleanup behaves differently when text is selected prior to the cleanup operation.
If I do a simple code cleanup on a C# source file, here is what my XML documentation look like :
/// <summary>
/// This is a summary
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// e.
/// </param>
However, if i select the XML text and launch a code cleanup on that selected text, take a look at how the code cleanup has indented the text between the tags :
/// <summary>
/// This is a summary
/// </summary>
/// <param name="sender">
/// The sender.
/// </param>
/// <param name="e">
/// e.
/// </param>
What is the real StyleCop way of generating XML documentation ? Indented text or not ?
How can I configure Resharper to avoid or force that indentation ?