2

我正在尝试使用该System.Diagnostics.CodeAnalysis.SuppressMessage属性来阻止 sonarqube 在我们代码库中的特定方法上提出此问题。我不确定抑制消息属性应该采用什么形式。我尝试了以下几种变体,但没有运气。

[SuppressMessage("csharpsquid", "S1871:Two branches in the same conditional structure should not have exactly the same implementation")]
public static string SomeMethod(string input)

以下是该问题的文档链接:http: //dist.sonarsource.com/plugins/csharp/rulesdoc/0.9.0-RC/S1871.html

使用:声纳-csharp-plugin-5.3.2

4

1 回答 1

2

SonarQube C# 插件版本 5.4.0.464 修复了这个问题。看看这张票:https ://jira.sonarsource.com/browse/SONARCS-613

于 2016-10-31T13:51:15.807 回答