sonarqube 中的 C# 项目

29

本文介绍了sonarqube 中的 C# 项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

当我运行 sonar-runner 进行分析时,我的简单 C# 项目分析因 SonarLint.Runner.exe 权限被拒绝错误而终止:

When I run sonar-runner for an analysis my simple C# project the analysis terminate on error on SonarLint.Runner.exe of permission denied:

ERROR: Error during SonarQube Scanner execution
ERROR: java.io.IOException: Cannot run program "/opt/sonarqube-5.4/projects/ArturiCSharpSort/.sonar/SonarLint.Runner/SonarLint.Runner.exe": error=13, Permission denied
ERROR: Caused by: Cannot run program "/opt/sonarqube-5.4/projects/ArturiCSharpSort/.sonar/SonarLint.Runner/SonarLint.Runner.exe": error=13, Permission denied
ERROR: Caused by: error=13, Permission denied

有效

-rw-r--r-- 1 root root 19456 Apr  5 11:14 .sonar/Lint.Runner/SonarLint.Runner.exe

以下是我的 sonar-project.properties:

This following is my sonar-project.properties:

# Root project information

sonar.projectKey=ArturiCSharpSort

sonar.projectName=ArturiCSharpSort

sonar.projectVersion=1.0

# Some properties that will be inherited by the modules

sonar.sources=.

#List of the module identifiers

#sonar.modules=

# Properties can obviously be overriden for

# each module - just prefix them with the module ID

#module1.sonar.projectName=

#module2.sonar.projectName=

我尝试在 SonarLint.Runner.exe 上执行 chmod,但它在每次分析时都会重新构建.如何对 C# 项目进行分析?

I try to act a chmod on SonarLint.Runner.exe but it is rebuil at every analysis. How can I run analysis on C# project?

推荐答案

C#项目的分析必须在Windows环境下完成.这里失败了,因为项目是在 Linux 上分析的.

Analysis of C# projects must be done on a Windows environment. Here it's failing because the project is analysed on Linux.

问题是 SonarQube C# Plugin 确实是针对Windows .NET 生态系统,这是您无论如何构建/维护 .NET 项目的地方.它必须与 SonarQube Scanner for MSBuild,这需要 MSBuild 14.0.

The thing is that SonarQube C# Plugin really is targeted to the Windows .NET ecosystem, which is where you'd anyhow build/maintain .NET projects. It must be used with the SonarQube Scanner for MSBuild, which requires MSBuild 14.0.

这篇关于sonarqube 中的 C# 项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14