I'm trying to get Resharper to reformat my XML doc comments in a certain way. I want the summary text on a new line, but other tags on a single line. Which is the same format as the Visual Studio placeholder text (when /// is entered).
I've searched StackOverflow and haven't been able to find anything yet.
If my explanation hasn't been clear enough, this is what I mean:
Before cleanup:
/// <summary>This is a summary</summary>
/// <param name="object">An object</param>
After cleanup (currently):
/// <summary>
/// This is a summary
/// </summary>
/// <param name="object">
/// An object
/// </param>
After cleanup (desired):
/// <summary>
/// This is a summary
/// </summary>
/// <param name="object">An object</param>
Is there a way to do this?
Failing that, is there a way to populate the Visual Studio placeholder text with the summary text Resharper generates?
(I've posted this question on the Resharper forums, but haven't had a response yet)