如何在Visual Studio for Mac中压缩StyleCop规则SA1515

时间:2018-03-10 08:39:37

标签: xamarin stylecop visual-studio-mac

在Visual Studio for Mac的Xamarin项目中,我正在尝试配置StyleCop。

我已在Settings.StyleCop中成功禁止了规则SA1512 SingleLineCommentsMustNotBeFollowedByBlankLine。

我用

<Rule Name="SingleLineCommentsMustNotBeFollowedByBlankLine">
  <RuleSettings>
    <BooleanProperty Name="Enabled">False</BooleanProperty>
  </RuleSettings>
</Rule>

当我试图用这个来压制SA1515 SingleLineCommentsMustBePrecededByBlankLine时

<Rule Name="SingleLineCommentsMustBePrecededByBlankLine">
  <RuleSettings>
    <BooleanProperty Name="Enabled">False</BooleanProperty>
  </RuleSettings>
</Rule>

它不起作用。关于我能够找到的规则名称的唯一文档是this

我使用了错误的规则名称吗?是否存在关于规则名称的任何其他文档或从规则SA1515的警告到项目范围内的任何其他方式?

1 个答案:

答案 0 :(得分:0)

我在Visual Studio 2017中遇到了相同的问题。 最终,将规则名称更改为SingleLineCommentMustBePrecededByBlankLine