Sonarqube Azure Devops 分析后未扫描代码
Code is not getting scanned after Sonarqube Azure Devops analysis
我正在为 Azure DevOps 管道使用 Sonarqube。这些是我的管道的任务
没有为 sonarqube 项目上的解决方案 WebService 扫描任何代码。我正在使用 MSBuild 构建代码。
我收到的一个警告是这样的。虽然我有 visual studio 2019 安装在构建机器上。
SonarScanner for MSBuild 4.10
Fixed invalid Code Analysis ErrorLog file. Please check that VS 2015 Update 1 (or later) is installed. Fixed file: E:\Build Agents\AquilaPool2-Agent-2\_work\s\Src\Services\DataIngestion\St\WebService\XWS.WebAPI\bin\WebService.dll.RoslynCA_fixed.json 2020-09-23T08:45:11.5066077Z Fixed invalid Code Analysis ErrorLog file. Please check that VS 2015 Update 1 (or later) is installed. Fixed file
我通过在 Prepare analysis on SonarQube 步骤中添加 sonar.scm.exclusions.disabled=true
解决了这个问题。尽管这个 Roslyn 错误仍然存在。现在正在扫描所有文件。
我正在为 Azure DevOps 管道使用 Sonarqube。这些是我的管道的任务
没有为 sonarqube 项目上的解决方案 WebService 扫描任何代码。我正在使用 MSBuild 构建代码。
我收到的一个警告是这样的。虽然我有 visual studio 2019 安装在构建机器上。
SonarScanner for MSBuild 4.10
Fixed invalid Code Analysis ErrorLog file. Please check that VS 2015 Update 1 (or later) is installed. Fixed file: E:\Build Agents\AquilaPool2-Agent-2\_work\s\Src\Services\DataIngestion\St\WebService\XWS.WebAPI\bin\WebService.dll.RoslynCA_fixed.json 2020-09-23T08:45:11.5066077Z Fixed invalid Code Analysis ErrorLog file. Please check that VS 2015 Update 1 (or later) is installed. Fixed file
我通过在 Prepare analysis on SonarQube 步骤中添加 sonar.scm.exclusions.disabled=true
解决了这个问题。尽管这个 Roslyn 错误仍然存在。现在正在扫描所有文件。