支持Rider中的托管代码规则集

时间:2017-10-03 06:57:04

标签: c# rider

我目前正在开发一个项目,我们使用.ruleset文件使用一组托管代码规则集,并且无法找到让它在Rider中工作的方法 - 我错过了什么或者Rider不支持自定义代码规则集吗?

1 个答案:

答案 0 :(得分:0)

我无法确认它是否有效,但我认为您可以在配置中为.csproj文件添加规则集,如下所示:

<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  <OutputPath>bin\x64\Debug\</OutputPath>
  <CodeAnalysisRuleSet>..\path\to\myrules.ruleset</CodeAnalysisRuleSet>
  <PlatformTarget>x64</PlatformTarget>
</PropertyGroup>