3

有没有办法使用 Resharper (6) 定义如何“清理”评论?我没有找到解决这个问题的方法。

代码清理前:

/// <summary>
/// This is a comment.
/// </summary>
public class MyClass
{
   ... <not yet cleaned code is here>
}

代码清理后:

/// <summary>
///   This is a comment.
/// </summary>
public class MyClass
{
   ... <cleaned code is here>
}

想要的结果:

/// <summary>
/// This is a comment.
/// </summary>
public class MyClass
{
   ... <cleaned code is here>
}

备注:我不想禁用单个类的清理等。我只想更改意外添加的评论中的缩进。

4

2 回答 2

5

我找到了一个解决方案(使用 ReSharper 6.1.1000.8.2)。

打开菜单:ReSharper->Options->Code Editing->Code Cleanup->(Select profile,需要是用户定义的profile)->C#->Disable Reformat embedded XML doc comments

这似乎是 ReSharper 6.1 中的一个新复选框!?

此解决方案不会设置缩进,但会禁用注释重新格式化。因此,您必须自己清理注释,但 ReSharper 不再更改它们(使用错误的缩进)。

我希望 JetBrains 将添加一个选项来支持在下一个版本中单独设置缩进。

于 2012-04-19T09:35:09.770 回答
1

我认为这是一个错误。这是在 ReSharper 错误跟踪站点上:http: //youtrack.jetbrains.com/issue/RSRP-275881

于 2012-04-18T16:24:41.680 回答