【问题标题】:What do I missed to apply for sonarqube custom rules using fxcop?使用 fxcop 申请 sonarqube 自定义规则时我错过了什么?
【发布时间】: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

首先,我在下面设置了声纳服务器:

  1. 我将 sonarqube 6.7.7 设置为 localhost
  2. 我添加到 fxcop 插件 1.4(https://community.sonarsource.com/t/new-release-fxcop-plugin-version-1-4/1430)
  3. 我在 sonarqube 质量配置文件上创建了 fxcop 自定义规则模板

我写在下面

名称:SampleCustomRule

键:SampleCustomRule

描述:SampleCustomRule

CheckId : SK100

  1. 我在声纳规则上激活了这条规则

其次,我在下面创建了示例 fxcop 自定义规则(Visual Studio):

我引用了这个视频。(https://www.youtube.com/watch?v=arHybNYWj04)

  1. 创建类库
  2. 添加引用(FxCopSdk、Microsoft.Cci)
  3. 创建示例规则 .cs & rules.xml
  4. 创建签名文件(.pfx)
  5. 构建项目
  6. 将我的程序集 (.dll) 复制到 C:\Program Files (x86)\Microsoft Visual Studio 12.0\Team Tools\Static Analysis Tools\FxCop\Rules

第三,我执行了 MSBuild(SonarScanner)

  1. 以管理员身份运行(VS 2019 的开发人员命令提示符)
  2. 我在下面输入了命令

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 结束

  1. 结果成功了。

我检查了作为我的自定义规则检查的项目,但没有任何代码异味。

以下是我的自定义规则代码(.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>

【问题讨论】:

    标签: c# sonarqube rules fxcop


    【解决方案1】:

    我不建议使用 FxCop 为 C# 或 VB.NET 编写新规则,特别是如果您想将问题导入 SonarQube。

    首先,FxCop 在几年前被更强大且更易于使用的 Roslyn 框架所取代。在 Roslyn 中编写自定义规则更简单,网络上有很多资源可以帮助您,例如Getting Started with Roslyn Analyzers(如果您已经设法在 FxCop 中编写了自定义规则,那么使用 Roslyn 编写规则将毫无问题!)。

    其次,SonarQube 和 Scanner for MSBuild 为将自定义 Roslyn 分析器中的问题作为“外部问题”导入提供了开箱即用的支持。基本上,这意味着如果您将新的 Roslyn 分析规则打包为 NuGet 包,然后在要分析的项目中引用该 NuGet 包,则 MSBuild 扫描仪将自动将问题上传到 SonarQube。

    但是,外部问题有一些限制,如 SonarQube documentation 中所述 - 您无法在质量配置文件中配置要执行的规则,您无法在 UI 中将问题标记为误报等,并且您负责将自定义 Roslyn 分析器 NuGet 包添加到您要分析的所有 MSBuild 项目中。

    要绕过所有这些限制,您可以使用SonarQube Roslyn SDK 生成自定义 SonarQube 插件 jar,用于打包您的自定义 Roslyn 分析器。您无需编写任何代码;只需对您的 Roslyn NuGet 包运行 RoslynSonarQubePluginGenerator.exe,它就会创建一个插件 jar。

    一旦您将生成的自定义 SonarQube 插件安装到您的 SonarQube 实例中,您将能够在质量配置文件中配置您的规则,将问题标记为 FP 等,并且 MSBuild 的扫描器将负责执行您的分析规则作为一部分构建,因此您无需从要分析的每个 MSBuild 项目中引用自定义 Roslyn 分析器 NuGet 包。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2016-06-18
      • 2015-12-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多