【发布时间】:2019-12-18 17:26:12
【问题描述】:
我想使用 fxcop 申请我自己的 sonarqube 自定义规则。 SonarScan 使用 MSBuild 成功,但 sonarqube 没有反映规则!
我引用了这个网址 - https://github.com/DanielHWe/sonar-fxcop
我试过很多次。如果您对此问题有经验,请提出一些建议。
- 我的开发环境
Visual Studio 2017
MSBuild 15
声纳 6.7.7
适用于 MSBuild 4.6.2 的 SonarScanner
FxCop 插件 1.4.1
C# 插件(声纳)7.15
首先,我在下面设置了声纳服务器:
- 我将 sonarqube 6.7.7 设置为 localhost
- 我添加到 fxcop 插件 1.4(https://community.sonarsource.com/t/new-release-fxcop-plugin-version-1-4/1430)
- 我在 sonarqube 质量配置文件上创建了 fxcop 自定义规则模板
我写在下面
名称:SampleCustomRule
键:SampleCustomRule
描述:SampleCustomRule
CheckId : SK100
- 我在声纳规则上激活了这条规则
其次,我在下面创建了示例 fxcop 自定义规则(Visual Studio):
我引用了这个视频。(https://www.youtube.com/watch?v=arHybNYWj04)
- 创建类库
- 添加引用(FxCopSdk、Microsoft.Cci)
- 创建示例规则 .cs & rules.xml
- 创建签名文件(.pfx)
- 构建项目
- 将我的程序集 (.dll) 复制到 C:\Program Files (x86)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules
第三,我执行了 MSBuild(SonarScanner)
- 以管理员身份运行(VS 2019 的开发人员命令提示符)
- 我在下面输入了命令
SonarScanner.MSBuild.exe 开始 /k:"ConsoleApp10" /n:"ConsoleApp10" /v:"3.6" /d:"sonar.cs.fxcop.assembly=C:\Users\ezcare\Desktop\FxCopTest\ FxCopTest\bin\Debug\FxCopTest.dll" /d:"sonar.cs.fxcop.fxCopCmdPath=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\FxCopCmd.exe" / d:"sonar.cs.fxcop.directory=C:\Users\ezcare\Desktop\FxCopTest\FxCopTest\bin\Debug"
MSBuild.exe C:\Users\ezcare\source\repos\ConsoleApp10 /t:Rebuild
SonarScanner.MSBuild.exe 结束
- 结果成功了。
我检查了作为我的自定义规则检查的项目,但没有任何代码异味。
以下是我的自定义规则代码(.cs & .xml)
using Microsoft.FxCop.Sdk;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
[assembly: CLSCompliant(true)]
namespace FxCopTest
{
public class SampleCustomRule : BaseIntrospectionRule
{
public SampleCustomRule():
base(@"SampleCustomRule", "FxCopTest.Rules", typeof(SampleCustomRule).Assembly)
{
}
public override ProblemCollection Check(TypeNode type)
{
if(!type.Namespace.Name.StartsWith("SK", StringComparison.Ordinal))
{
var resolution = GetResolution(type.Name.Name);
var problem = new Problem(resolution, type)
{
Certainty = 100
//FixCategory = FixCategories.NonBreaking,
//MessageLevel = MessageLevel.Warning
};
base.Problems.Add(problem);
}
return base.Problems;
}
}
}
<?xml version="1.0" encoding="utf-8" ?>
<Rules>
<Rule TypeName="SampleCustomRule" Category="CustomRules.Naming" CheckId="SK100">
<Name>All type namespace should start with 'SK'</Name>
<Description>SK</Description>
<Resolution>The name of type {0} should start 'SK'</Resolution>
<MessageLevel Certainty="100">Warning</MessageLevel>
<FixCategories>NonBreaking</FixCategories>
<Url/>
</Rule>
</Rules>
【问题讨论】: