是否有SonarQube.Scanner.MSBuild.exe的详细模式?
Is there a verbose mode of SonarQube.Scanner.MSBuild.exe?
我在使用 SonarQube.Scanner.MSBuild.exe
扫描混合的 C#、C++ 解决方案时遇到了一些问题。 (在SonarQube.Scanner.MSBuild.exe
结束期间)所以我想问一下是否有一个详细的选项来激活enhanced/debug输出。
输出结果是没有找到文件,但是路径中多了一个子文件夹不正确,想弄明白是从哪里来的。
示例:a.cpp
位于 C:\src\ProjektA\Modul1
,但输出显示:
"Warn: Cannot find the file "C:\src\ProjektA\**Modul2**\Module1\a.cpp" skipping violations"
顺便说一句:FilesToAnalyse.txt
中的路径是正确的
要激活详细模式,您只需传递以下参数:
/d:sonar.verbose=true
参考:https://docs.sonarqube.org/display/SCAN/Additional+Analysis+Parameters
我在使用 SonarQube.Scanner.MSBuild.exe
扫描混合的 C#、C++ 解决方案时遇到了一些问题。 (在SonarQube.Scanner.MSBuild.exe
结束期间)所以我想问一下是否有一个详细的选项来激活enhanced/debug输出。
输出结果是没有找到文件,但是路径中多了一个子文件夹不正确,想弄明白是从哪里来的。
示例:a.cpp
位于 C:\src\ProjektA\Modul1
,但输出显示:
"Warn: Cannot find the file "C:\src\ProjektA\**Modul2**\Module1\a.cpp" skipping violations"
顺便说一句:FilesToAnalyse.txt
中的路径是正确的
要激活详细模式,您只需传递以下参数:
/d:sonar.verbose=true
参考:https://docs.sonarqube.org/display/SCAN/Additional+Analysis+Parameters