"The main branch of this project is empty." for my .net core 3.2 project

I see “The main branch of this project is empty.” on SonarCloud dashboard even though the project has tons of code.

My project is a dotnet core 3.2 class application and I am using Azure DevOps pipelines.
When I run the pipeline I see code analysis done. but nothing appears on sonarcloud. Also I see 0 lines of code for all PRs and branches

My pipeline yaml is:

trigger:
- *[my triggers]*

pool:
  name: Default *[self hosted agent]*

variables:
  solution: '**/*.sln'
  buildPlatform: 'Any CPU'
  buildConfiguration: 'Release'

steps:
- task: DotNetCoreCLI@2
  displayName: New Manifest for tool
  inputs:
    command: 'custom'
    custom: 'new'
    arguments: 'tool-manifest --force'

- task: DotNetCoreCLI@2
  displayName: 'Initialize EntityFrameworkCore'
  inputs:
    command: 'custom'
    custom: 'tool'
    arguments: 'install dotnet-ef --version 3.1'

- task: NuGetToolInstaller@1

- task: NuGetCommand@2
  inputs:
    restoreSolution: '$(solution)'

*[I am entering correct values for sonarcloud task]*
- task: SonarCloudPrepare@1
  displayName: 'Prepare analysis on SonarCloud'
  inputs:
    SonarCloud: ''
    organization: ''
    scannerMode: 'MSBuild'
    projectKey: ''
    projectName: ''


- task: DotNetCoreCLI@2
  displayName: 'Build Solution'
  inputs:
    command: 'build'
    projects: '$(solution)'
    arguments: '--configuration $(buildConfiguration)'

- task: DotNetCoreCLI@2
  displayName: 'Run Tests'
  inputs:
    command: 'test'
    projects: '**/*Tests.csproj'
    arguments: '--configuration $(buildConfiguration) --no-build --collect "Code Coverage"'

- task: SonarCloudAnalyze@1
  displayName: 'Run Code Analysis'

- task: SonarCloudPublish@1
  displayName: 'Publish Quality Gate Result'

- task: PublishBuildArtifacts@1

Hi,

What’s the name of the branch you’re analyzing? If you check the list of branches, does it show up there?

 
Ann

yes. it does.
The branches show up, even the pipeline runs show up. But all of them show 0 code.

Hi,

So every branch that’s analyzed shows up as having 0 LOC? Can you share an analysis log?

The analysis / scanner log is what’s output from the analysis command. Hopefully, the log you provide will include that command as well.

This guide will help you find them.

 
Ann

Hi Ann

The log has our projects details and other details I am not comfortable sharing in public forum. Is there a way I could share securely with you?

By the way I deleted the old sonarsource project, readded the project again and did multiple analysis. Still same result: main branch, PRs and other short lived branches show 0 lines of code. Also I had updated the main branch name in SonarSource to match what we use as dev branch. It’s not marked as Default branch on Azure DevOps, hopefully that’s not an issue. I have updated New Code definition on sonarsource.

Hi,

Feel free to redact your logs as necessary.

 
Ann

2022-11-18T23:56:55.9057100Z ##[section]Starting: Run Code Analysis
2022-11-18T23:56:55.9386098Z ==============================================================================
2022-11-18T23:56:55.9386542Z Task         : Run Code Analysis
2022-11-18T23:56:55.9386850Z Description  : Run scanner and upload the results to the SonarCloud server.
2022-11-18T23:56:55.9387190Z Version      : 1.33.1
2022-11-18T23:56:55.9387388Z Author       : sonarsource
2022-11-18T23:56:55.9388133Z Help         : Version: 1.33.1. This task is not needed for Maven and Gradle projects since the scanner should be run as part of the build.

[More Information](https://docs.sonarcloud.io/advanced-setup/ci-based-analysis/sonarcloud-extension-for-azure-devops/)
2022-11-18T23:56:55.9388843Z ==============================================================================
2022-11-18T23:56:57.1602623Z [command]C:\agents\_work\_tasks\SonarCloudPrepare_14d9cde6-c1da-4d55-aa01-2965cd301255\1.30.1\classic-sonar-scanner-msbuild\SonarScanner.MSBuild.exe end
2022-11-18T23:56:57.3372234Z SonarScanner for MSBuild 5.8
2022-11-18T23:56:57.3377785Z Using the .NET Framework version of the Scanner for MSBuild
2022-11-18T23:56:57.4001392Z Post-processing started.
2022-11-18T23:56:58.4600724Z Calling the TFS Processor executable...
2022-11-18T23:56:58.7228838Z Attempting to locate the CodeCoverage.exe tool...
2022-11-18T23:56:58.7282314Z Attempting to locate the CodeCoverage.exe tool using setup configuration...
2022-11-18T23:56:58.7919744Z Attempting to locate the CodeCoverage.exe tool using registry...
2022-11-18T23:56:58.7992834Z WARNING: Failed to find the code coverage command line tool. Possible cause: Visual Studio is not installed, or the installed version does not support code coverage.
2022-11-18T23:56:58.8096286Z The TFS Processor has finished
2022-11-18T23:56:58.8166617Z Calling the SonarScanner CLI...
2022-11-18T23:56:59.1600873Z INFO: Scanner configuration file: C:\agents\_work\_tasks\SonarCloudPrepare_14d9cde6-c1da-4d55-aa01-2965cd301255\1.30.1\classic-sonar-scanner-msbuild\sonar-scanner-4.7.0.2747\bin\..\conf\sonar-scanner.properties
2022-11-18T23:56:59.1693191Z INFO: Project root configuration file: C:\agents\_work\2\.sonarqube\out\sonar-project.properties
2022-11-18T23:56:59.2401792Z INFO: SonarScanner 4.7.0.2747
2022-11-18T23:56:59.2403547Z INFO: Java 19 Oracle Corporation (64-bit)
2022-11-18T23:56:59.2404579Z INFO: Windows Server 2022 10.0 amd64
2022-11-18T23:56:59.9650947Z INFO: User cache: C:\Windows\ServiceProfiles\NetworkService\.sonar\cache
2022-11-18T23:57:00.8758325Z INFO: Scanner configuration file: C:\agents\_work\_tasks\SonarCloudPrepare_14d9cde6-c1da-4d55-aa01-2965cd301255\1.30.1\classic-sonar-scanner-msbuild\sonar-scanner-4.7.0.2747\bin\..\conf\sonar-scanner.properties
2022-11-18T23:57:00.8765049Z INFO: Project root configuration file: C:\agents\_work\2\.sonarqube\out\sonar-project.properties
2022-11-18T23:57:00.8884491Z INFO: Analyzing on SonarCloud
2022-11-18T23:57:00.8889265Z INFO: Default locale: "en_US", source code encoding: "UTF-8" (analysis is platform dependent)
2022-11-18T23:57:02.0204702Z INFO: Load global settings
2022-11-18T23:57:02.6773308Z INFO: Load global settings (done) | time=658ms
2022-11-18T23:57:02.6845488Z INFO: Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
2022-11-18T23:57:02.7027506Z INFO: User cache: C:\Windows\ServiceProfiles\NetworkService\.sonar\cache
2022-11-18T23:57:02.7147047Z INFO: Load/download plugins
2022-11-18T23:57:02.7148554Z INFO: Load plugins index
2022-11-18T23:57:03.3565313Z INFO: Load plugins index (done) | time=642ms
2022-11-18T23:57:04.3604200Z INFO: Load/download plugins (done) | time=1646ms
2022-11-18T23:57:05.1715626Z INFO: Loaded core extensions: developer-scanner
2022-11-18T23:57:05.8193340Z INFO: Found an active CI vendor: 'Azure DevOps'
2022-11-18T23:57:05.8398728Z INFO: Load project settings for component key: 'XXXXX'
2022-11-18T23:57:06.4321498Z INFO: Load project settings for component key: 'XXXXX' (done) | time=592ms
2022-11-18T23:57:06.4407519Z INFO: Process project properties
2022-11-18T23:57:06.5412514Z INFO: Execute project builders
2022-11-18T23:57:06.7814542Z INFO: Execute project builders (done) | time=248ms
2022-11-18T23:57:06.7863439Z INFO: Project key: XXXXX
2022-11-18T23:57:06.7864212Z INFO: Base dir: C:\agents\_work\2\s
2022-11-18T23:57:06.7864855Z INFO: Working dir: C:\agents\_work\2\.sonarqube\out\.sonar
2022-11-18T23:57:07.0127558Z INFO: Load project branches
2022-11-18T23:57:07.6126317Z INFO: Load project branches (done) | time=600ms
2022-11-18T23:57:07.6170521Z INFO: Check ALM binding of project 'XXXXX'
2022-11-18T23:57:08.2169890Z INFO: Detected project binding: BOUND
2022-11-18T23:57:08.2172839Z INFO: Check ALM binding of project 'XXXXX' (done) | time=600ms
2022-11-18T23:57:08.2206480Z INFO: Load project pull requests
2022-11-18T23:57:08.8117842Z INFO: Load project pull requests (done) | time=591ms
2022-11-18T23:57:08.8199456Z INFO: Load branch configuration
2022-11-18T23:57:08.8221865Z INFO: Load branch configuration (done) | time=2ms
2022-11-18T23:57:08.8617426Z INFO: Load quality profiles
2022-11-18T23:57:09.5119989Z INFO: Load quality profiles (done) | time=650ms
2022-11-18T23:57:09.5255225Z INFO: Load active rules
2022-11-18T23:57:15.1059058Z INFO: Load active rules (done) | time=5580ms
2022-11-18T23:57:15.1775107Z INFO: Organization key: XXXXX
2022-11-18T23:57:15.1787665Z INFO: Branch name: 4.02, type: long-lived
2022-11-18T23:57:15.2002091Z INFO: Load project repositories
2022-11-18T23:57:15.7859049Z INFO: Load project repositories (done) | time=586ms
2022-11-18T23:57:15.8401077Z INFO: Indexing files...
2022-11-18T23:57:15.8406051Z INFO: Project configuration:
2022-11-18T23:57:15.8411806Z INFO:   Excluded sources: **/build-wrapper-dump.json
2022-11-18T23:57:16.1364093Z INFO: Indexing files of module ''
2022-11-18T23:57:16.1366342Z INFO:   Base dir: 
2022-11-18T23:57:16.1437497Z INFO:   Source paths: 
2022-11-18T23:57:16.1442383Z INFO:   Excluded sources: **/build-wrapper-dump.json
2022-11-18T23:57:16.4618009Z INFO: Indexing files of module 'Core.Common'
2022-11-18T23:57:16.4620441Z INFO:   Base dir: 
2022-11-18T23:57:16.4621930Z INFO:   Source paths: 
2022-11-18T23:57:16.4623267Z INFO:   Excluded sources: **/build-wrapper-dump.json
2022-11-18T23:57:16.4815703Z INFO: Indexing files of module ''
2022-11-18T23:57:16.4817389Z INFO:   Base dir: 
2022-11-18T23:57:16.4853568Z INFO:   Source paths: 
2022-11-18T23:57:16.4855204Z INFO:   Excluded sources: **/build-wrapper-dump.json
2022-11-18T23:57:17.0095388Z INFO: Indexing files of module ''
2022-11-18T23:57:17.0100258Z INFO:   Base dir: 
2022-11-18T23:57:17.0102060Z INFO:   Source paths: 
2022-11-18T23:57:17.0103726Z INFO:   Excluded sources: **/build-wrapper-dump.json
2022-11-18T23:57:17.1564031Z INFO: 0 files indexed
2022-11-18T23:57:17.1569568Z INFO: 0 files ignored because of inclusion/exclusion patterns
2022-11-18T23:57:17.1570864Z INFO: 1158 files ignored because of scm ignore settings
2022-11-18T23:57:17.2785884Z INFO: ------------- Run sensors on module Backbone.Entities
2022-11-18T23:57:17.8388461Z INFO: Load metrics repository
2022-11-18T23:57:18.4283465Z INFO: Load metrics repository (done) | time=590ms
2022-11-18T23:57:22.6345666Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:22.6359869Z INFO: Sensor C# Project Type Information [csharp] (done) | time=2ms
2022-11-18T23:57:22.6365270Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:22.6540649Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:22.6541954Z INFO: Language version: CSharp8
2022-11-18T23:57:22.6546067Z INFO: Concurrent execution: enabled
2022-11-18T23:57:22.6546951Z INFO: Sensor C# Analysis Log [csharp] (done) | time=17ms
2022-11-18T23:57:22.6547594Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:22.6561831Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:22.6564931Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:22.6594001Z INFO: 0 source files to be analyzed
2022-11-18T23:57:22.6603067Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:22.6604135Z INFO: Sensor Text Sensor [text] (done) | time=4ms
2022-11-18T23:57:22.6608724Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:22.6618474Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2022-11-18T23:57:22.6621478Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:22.6769183Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=15ms
2022-11-18T23:57:22.6771850Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:22.6773486Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=1ms
2022-11-18T23:57:22.6776851Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:22.6793688Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:22.6806412Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:22.6807409Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=3ms
2022-11-18T23:57:22.6810787Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:22.6822002Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:22.6826039Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2022-11-18T23:57:22.6827531Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:22.6834309Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2022-11-18T23:57:22.6836490Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:22.6844302Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:22.6879238Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:22.6885166Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=5ms
2022-11-18T23:57:22.6889113Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:22.6898314Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=1ms
2022-11-18T23:57:22.6902020Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:22.6911955Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2022-11-18T23:57:22.6949590Z INFO: ------------- Run sensors on module xxx
2022-11-18T23:57:22.8992631Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:22.8993919Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:22.8997479Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:22.9071810Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:22.9076054Z INFO: Language version: CSharp8
2022-11-18T23:57:22.9077447Z INFO: Concurrent execution: enabled
2022-11-18T23:57:22.9078632Z INFO: Sensor C# Analysis Log [csharp] (done) | time=9ms
2022-11-18T23:57:22.9100612Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:22.9101672Z INFO: Sensor C# Properties [csharp] (done) | time=2ms
2022-11-18T23:57:22.9102714Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:22.9136269Z INFO: 0 source files to be analyzed
2022-11-18T23:57:22.9144684Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:22.9145797Z INFO: Sensor Text Sensor [text] (done) | time=2ms
2022-11-18T23:57:22.9146823Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:22.9226595Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:22.9228785Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:22.9250843Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:22.9261902Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:22.9284550Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2022-11-18T23:57:22.9285922Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:22.9287910Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:22.9289893Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:22.9291237Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:22.9292671Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:22.9293955Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:22.9295076Z INFO: Sensor CSS Rules [javascript] (done) | time=0ms
2022-11-18T23:57:22.9296075Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:22.9297382Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2022-11-18T23:57:22.9299006Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:22.9325950Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:22.9336588Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:22.9405477Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:22.9433620Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:22.9443134Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:22.9445741Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:22.9447983Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=0ms
2022-11-18T23:57:22.9450067Z INFO: ------------- Run sensors on module Core.Common.Contracts
2022-11-18T23:57:23.1916581Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:23.2028146Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:23.2035545Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:23.2043916Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:23.2062400Z INFO: Language version: CSharp8
2022-11-18T23:57:23.2529803Z INFO: Concurrent execution: enabled
2022-11-18T23:57:23.2649341Z INFO: Sensor C# Analysis Log [csharp] (done) | time=16ms
2022-11-18T23:57:23.2688337Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:23.2701811Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:23.2703089Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:23.2704387Z INFO: 0 source files to be analyzed
2022-11-18T23:57:23.2705250Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:23.2706251Z INFO: Sensor Text Sensor [text] (done) | time=7ms
2022-11-18T23:57:23.2707210Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:23.2762390Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:23.2781825Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:23.3430355Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=1ms
2022-11-18T23:57:23.3456141Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:23.3567757Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=1ms
2022-11-18T23:57:23.3573458Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:23.3594380Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:23.4004270Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:23.4006526Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:23.4040897Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:23.4110588Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:23.4134955Z INFO: Sensor CSS Rules [javascript] (done) | time=0ms
2022-11-18T23:57:23.4135707Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:23.4137945Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=0ms
2022-11-18T23:57:23.4138945Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:23.4139701Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:23.4140513Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:23.4141479Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=0ms
2022-11-18T23:57:23.4202038Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:23.4225831Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:23.4725773Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:23.4816194Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2022-11-18T23:57:23.4822123Z INFO: ------------- Run sensors on module xxx
2022-11-18T23:57:23.4826072Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:23.4829059Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:23.5033249Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:23.5069862Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:23.5133323Z INFO: Language version: CSharp8
2022-11-18T23:57:23.5158095Z INFO: Concurrent execution: enabled
2022-11-18T23:57:23.5192155Z INFO: Sensor C# Analysis Log [csharp] (done) | time=13ms
2022-11-18T23:57:23.5194028Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:23.5195831Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:23.5197343Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:23.5199568Z INFO: 0 source files to be analyzed
2022-11-18T23:57:23.5201064Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:23.5202634Z INFO: Sensor Text Sensor [text] (done) | time=4ms
2022-11-18T23:57:23.5205445Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:23.5206695Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2022-11-18T23:57:23.5208022Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:23.5209391Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:23.5210594Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:23.5211786Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=1ms
2022-11-18T23:57:23.5221285Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:23.5223038Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:23.5224837Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:23.5597606Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=2ms
2022-11-18T23:57:23.5803466Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:23.5816303Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:23.6585220Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2022-11-18T23:57:23.6594869Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:23.6598557Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2022-11-18T23:57:23.6599660Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:23.6600443Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:23.6601151Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:23.6601914Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:23.6602643Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:23.6603312Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:23.6604256Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:23.6605059Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2022-11-18T23:57:23.6605836Z INFO: ------------- Run sensors on module xxx
2022-11-18T23:57:23.7700563Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:23.7759283Z INFO: Sensor C# Project Type Information [csharp] (done) | time=0ms
2022-11-18T23:57:23.7773242Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:23.7841858Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:23.7843885Z INFO: Language version: CSharp8
2022-11-18T23:57:23.7846429Z INFO: Concurrent execution: enabled
2022-11-18T23:57:23.7848537Z INFO: Sensor C# Analysis Log [csharp] (done) | time=16ms
2022-11-18T23:57:23.8020214Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:23.8050079Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:23.8135335Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:23.8163206Z INFO: 0 source files to be analyzed
2022-11-18T23:57:23.8229280Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:23.8255628Z INFO: Sensor Text Sensor [text] (done) | time=3ms
2022-11-18T23:57:23.8325701Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:23.8351108Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:23.8423183Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:23.8448693Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:23.8449859Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:23.8513691Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=3ms
2022-11-18T23:57:23.8552987Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:23.8625761Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:23.8756555Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:23.8761551Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:23.8765541Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:23.8769467Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:23.8789888Z INFO: Sensor CSS Rules [javascript] (done) | time=0ms
2022-11-18T23:57:23.8940365Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:23.8944691Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=0ms
2022-11-18T23:57:23.8947992Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:23.8979510Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:23.8988300Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:23.9006437Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:23.9126508Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:23.9128152Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:23.9131521Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:23.9134225Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=1ms
2022-11-18T23:57:23.9203572Z INFO: ------------- Run sensors on module Core.Common
2022-11-18T23:57:24.0457368Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:24.0481741Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:24.0487198Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:24.0550687Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:24.0553226Z INFO: Language version: CSharp8
2022-11-18T23:57:24.0555185Z INFO: Concurrent execution: enabled
2022-11-18T23:57:24.0645350Z INFO: Sensor C# Analysis Log [csharp] (done) | time=12ms
2022-11-18T23:57:24.0658965Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:24.0663006Z INFO: Sensor C# Properties [csharp] (done) | time=0ms
2022-11-18T23:57:24.0667027Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:24.0691948Z INFO: 0 source files to be analyzed
2022-11-18T23:57:24.0696624Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:24.0700429Z INFO: Sensor Text Sensor [text] (done) | time=2ms
2022-11-18T23:57:24.0704517Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:24.0720185Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:24.0796429Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:24.0830716Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:24.0836405Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:24.0840277Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2022-11-18T23:57:24.0891463Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:24.0893687Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:24.0895304Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:24.0897277Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:24.0899230Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:24.0900319Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:24.0901317Z INFO: Sensor CSS Rules [javascript] (done) | time=0ms
2022-11-18T23:57:24.0902785Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:24.0904187Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2022-11-18T23:57:24.0905666Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:24.0907439Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:24.0908911Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:24.0910985Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.0912776Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:24.0914062Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.0915431Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:24.0916774Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.0918074Z INFO: ------------- Run sensors on module xxx
2022-11-18T23:57:24.3239605Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:24.3255056Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:24.3277498Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:24.3280229Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:24.3281997Z INFO: Language version: CSharp8
2022-11-18T23:57:24.3361022Z INFO: Concurrent execution: enabled
2022-11-18T23:57:24.3362585Z INFO: Sensor C# Analysis Log [csharp] (done) | time=12ms
2022-11-18T23:57:24.3387348Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:24.3523947Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:24.3526517Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:24.3528333Z INFO: 0 source files to be analyzed
2022-11-18T23:57:24.3529845Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:24.3531179Z INFO: Sensor Text Sensor [text] (done) | time=2ms
2022-11-18T23:57:24.3532519Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:24.3533911Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:24.3535302Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:24.3536646Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:24.3537953Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:24.3539276Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2022-11-18T23:57:24.3540863Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:24.3542785Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:24.3544986Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:24.3546673Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:24.3547994Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:24.3549510Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:24.3551181Z INFO: Sensor CSS Rules [javascript] (done) | time=0ms
2022-11-18T23:57:24.3552576Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:24.3554082Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=1ms
2022-11-18T23:57:24.3555576Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:24.3557026Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:24.3558456Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:24.3560401Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:24.3561967Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:24.3563238Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.3564609Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:24.3565970Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.3567261Z INFO: ------------- Run sensors on module xxx
2022-11-18T23:57:24.5291403Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:24.5301840Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:24.5307411Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:24.5494656Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:24.5496312Z INFO: Language version: CSharp8
2022-11-18T23:57:24.5497388Z INFO: Concurrent execution: enabled
2022-11-18T23:57:24.5587654Z INFO: Roslyn version: 4.3.0.0
2022-11-18T23:57:24.5589088Z INFO: Language version: CSharp8
2022-11-18T23:57:24.5605421Z INFO: Concurrent execution: enabled
2022-11-18T23:57:24.5622451Z INFO: Sensor C# Analysis Log [csharp] (done) | time=27ms
2022-11-18T23:57:24.5624360Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:24.5629325Z INFO: Sensor C# Properties [csharp] (done) | time=2ms
2022-11-18T23:57:24.5631047Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:24.5654344Z INFO: 0 source files to be analyzed
2022-11-18T23:57:24.5659542Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:24.5665578Z INFO: Sensor Text Sensor [text] (done) | time=2ms
2022-11-18T23:57:24.5667545Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:24.5669093Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=0ms
2022-11-18T23:57:24.5684957Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:24.5748784Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=1ms
2022-11-18T23:57:24.5751088Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:24.5752335Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2022-11-18T23:57:24.5754193Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:24.5756169Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:24.5785805Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:24.5787609Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:24.5789165Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:24.5790641Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:24.5792008Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2022-11-18T23:57:24.5793301Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:24.5794705Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=0ms
2022-11-18T23:57:24.5796139Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:24.5797508Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:24.5798822Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:24.5800207Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:24.5801506Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:24.5804694Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=1ms
2022-11-18T23:57:24.5806115Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:24.5807505Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=2ms
2022-11-18T23:57:24.5808817Z INFO: ------------- Run sensors on module XXXXX
2022-11-18T23:57:24.7406617Z INFO: Sensor C# Project Type Information [csharp]
2022-11-18T23:57:24.7410822Z INFO: Sensor C# Project Type Information [csharp] (done) | time=1ms
2022-11-18T23:57:24.7416854Z INFO: Sensor C# Analysis Log [csharp]
2022-11-18T23:57:24.7418170Z INFO: Sensor C# Analysis Log [csharp] (done) | time=0ms
2022-11-18T23:57:24.7437263Z INFO: Sensor C# Properties [csharp]
2022-11-18T23:57:24.7439417Z INFO: Sensor C# Properties [csharp] (done) | time=1ms
2022-11-18T23:57:24.7441255Z INFO: Sensor Text Sensor [text]
2022-11-18T23:57:24.7470540Z INFO: 0 source files to be analyzed
2022-11-18T23:57:24.7483736Z INFO: 0/0 source files have been analyzed
2022-11-18T23:57:24.7524283Z INFO: Sensor Text Sensor [text] (done) | time=3ms
2022-11-18T23:57:24.7525784Z INFO: Sensor VB.NET Project Type Information [vbnet]
2022-11-18T23:57:24.7538310Z INFO: Sensor VB.NET Project Type Information [vbnet] (done) | time=1ms
2022-11-18T23:57:24.7542837Z INFO: Sensor VB.NET Analysis Log [vbnet]
2022-11-18T23:57:24.7544082Z INFO: Sensor VB.NET Analysis Log [vbnet] (done) | time=0ms
2022-11-18T23:57:24.7545184Z INFO: Sensor VB.NET Properties [vbnet]
2022-11-18T23:57:24.7546258Z INFO: Sensor VB.NET Properties [vbnet] (done) | time=0ms
2022-11-18T23:57:24.7547398Z INFO: Sensor JaCoCo XML Report Importer [jacoco]
2022-11-18T23:57:24.7549057Z INFO: 'sonar.coverage.jacoco.xmlReportPaths' is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
2022-11-18T23:57:24.7550943Z INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
2022-11-18T23:57:24.7552338Z INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=1ms
2022-11-18T23:57:24.7553460Z INFO: Sensor CSS Rules [javascript]
2022-11-18T23:57:24.7560396Z INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
2022-11-18T23:57:24.7564885Z INFO: Sensor CSS Rules [javascript] (done) | time=1ms
2022-11-18T23:57:24.7566090Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend]
2022-11-18T23:57:24.7567286Z INFO: Sensor ThymeLeaf template sensor [securityjavafrontend] (done) | time=0ms
2022-11-18T23:57:24.7568437Z INFO: Sensor Serverless configuration file sensor [security]
2022-11-18T23:57:24.7569546Z INFO: 0 Serverless function entries were found in the project
2022-11-18T23:57:24.7570709Z INFO: 0 Serverless function handlers were kept as entrypoints
2022-11-18T23:57:24.7571905Z INFO: Sensor Serverless configuration file sensor [security] (done) | time=1ms
2022-11-18T23:57:24.7573290Z INFO: Sensor AWS SAM template file sensor [security]
2022-11-18T23:57:24.7574517Z INFO: Sensor AWS SAM template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.7575787Z INFO: Sensor AWS SAM Inline template file sensor [security]
2022-11-18T23:57:24.7577139Z INFO: Sensor AWS SAM Inline template file sensor [security] (done) | time=0ms
2022-11-18T23:57:24.7578340Z INFO: Sensor javabugs [dbd]
2022-11-18T23:57:24.7579760Z INFO: Reading IR files from: C:\agents\_work\2\.sonarqube\out\.sonar\ir\java
2022-11-18T23:57:24.7581015Z INFO: No IR files have been included for analysis.
2022-11-18T23:57:24.7582151Z INFO: Sensor javabugs [dbd] (done) | time=2ms
2022-11-18T23:57:24.7594483Z INFO: Sensor pythonbugs [dbd]
2022-11-18T23:57:24.7595791Z INFO: Reading IR files from: C:\agents\_work\2\.sonarqube\out\.sonar\ir\python
2022-11-18T23:57:24.7596968Z INFO: No IR files have been included for analysis.
2022-11-18T23:57:24.7598226Z INFO: Sensor pythonbugs [dbd] (done) | time=2ms
2022-11-18T23:57:24.7599371Z INFO: Sensor JavaSecuritySensor [security]
2022-11-18T23:57:24.7613851Z INFO: Reading type hierarchy from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\java
2022-11-18T23:57:24.7615334Z INFO: Read 0 type definitions
2022-11-18T23:57:24.7649770Z INFO: Reading UCFGs from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\java
2022-11-18T23:57:24.7665654Z INFO: No UCFGs have been included for analysis.
2022-11-18T23:57:24.7674756Z INFO: Sensor JavaSecuritySensor [security] (done) | time=7ms
2022-11-18T23:57:24.7676345Z INFO: Sensor CSharpSecuritySensor [security]
2022-11-18T23:57:24.7677829Z INFO: Reading type hierarchy from: C:\agents\_work\2\.sonarqube\out\ucfg_cs2
2022-11-18T23:57:33.1419794Z INFO: Read 1343 type definitions
2022-11-18T23:57:33.1869413Z INFO: Reading UCFGs from: C:\agents\_work\2\.sonarqube\out\ucfg_cs2
2022-11-18T23:59:21.9350213Z INFO: 23:59:21.9332835 Building Runtime Type propagation graph
2022-11-18T23:59:22.3817374Z INFO: 23:59:22.3773055 Running Tarjan on 84064 nodes
2022-11-18T23:59:22.5729336Z INFO: 23:59:22.5713196 Tarjan found 83972 components
2022-11-18T23:59:22.7818209Z INFO: 23:59:22.780335 Variable type analysis: done
2022-11-18T23:59:22.7828387Z INFO: 23:59:22.7813273 Building Runtime Type propagation graph
2022-11-18T23:59:23.1984510Z INFO: 23:59:23.1973531 Running Tarjan on 84064 nodes
2022-11-18T23:59:23.3097044Z INFO: 23:59:23.3083606 Tarjan found 83972 components
2022-11-18T23:59:23.4893537Z INFO: 23:59:23.48837 Variable type analysis: done
2022-11-18T23:59:23.5010144Z INFO: Analyzing 18365 ucfgs to detect vulnerabilities.
2022-11-18T23:59:26.2860492Z INFO: All rules entrypoints : 119
2022-11-18T23:59:26.2861397Z INFO: Retained UCFGs : 4692
2022-11-18T23:59:27.2319597Z INFO: Taint analysis starting. Entrypoints: 119
2022-11-18T23:59:27.2512451Z INFO: Running symbolic analysis for 'CSHARP'
2022-11-18T23:59:36.5668232Z INFO: Taint analysis: done.
2022-11-18T23:59:36.5671860Z INFO: Sensor CSharpSecuritySensor [security] (done) | time=131800ms
2022-11-18T23:59:36.5690542Z INFO: Sensor PhpSecuritySensor [security]
2022-11-18T23:59:36.5692424Z INFO: Reading type hierarchy from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\php
2022-11-18T23:59:36.5693113Z INFO: Read 0 type definitions
2022-11-18T23:59:36.5694704Z INFO: Reading UCFGs from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\php
2022-11-18T23:59:36.5695452Z INFO: No UCFGs have been included for analysis.
2022-11-18T23:59:36.5696121Z INFO: Sensor PhpSecuritySensor [security] (done) | time=0ms
2022-11-18T23:59:36.5696714Z INFO: Sensor PythonSecuritySensor [security]
2022-11-18T23:59:36.5697420Z INFO: Reading type hierarchy from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\python
2022-11-18T23:59:36.5698058Z INFO: Read 0 type definitions
2022-11-18T23:59:36.5698637Z INFO: Reading UCFGs from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\python
2022-11-18T23:59:36.5699306Z INFO: No UCFGs have been included for analysis.
2022-11-18T23:59:36.5699949Z INFO: Sensor PythonSecuritySensor [security] (done) | time=0ms
2022-11-18T23:59:36.5700639Z INFO: Sensor JsSecuritySensor [security]
2022-11-18T23:59:36.5701424Z INFO: Reading type hierarchy from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\js
2022-11-18T23:59:36.5702033Z INFO: Read 0 type definitions
2022-11-18T23:59:36.5702708Z INFO: Reading UCFGs from: C:\agents\_work\2\.sonarqube\out\.sonar\ucfg2\js
2022-11-18T23:59:36.5703436Z INFO: No UCFGs have been included for analysis.
2022-11-18T23:59:36.5704394Z INFO: Sensor JsSecuritySensor [security] (done) | time=1ms
2022-11-18T23:59:36.5705224Z INFO: ------------- Run sensors on project
2022-11-18T23:59:36.6251307Z INFO: Sensor Analysis Warnings import [csharp]
2022-11-18T23:59:36.6316847Z INFO: Sensor Analysis Warnings import [csharp] (done) | time=6ms
2022-11-18T23:59:36.6319310Z INFO: Sensor Zero Coverage Sensor
2022-11-18T23:59:36.6320478Z INFO: Sensor Zero Coverage Sensor (done) | time=0ms
2022-11-18T23:59:36.6382634Z INFO: CPD Executor Calculating CPD for 0 files
2022-11-18T23:59:36.6394131Z INFO: CPD Executor CPD calculation finished (done) | time=0ms
2022-11-18T23:59:37.3164302Z INFO: Analysis report generated in 661ms, dir size=232 KB
2022-11-18T23:59:37.3871748Z INFO: Analysis report compressed in 80ms, zip size=42 KB
2022-11-18T23:59:38.3039328Z INFO: Analysis report uploaded in 920ms
2022-11-18T23:59:38.3079737Z INFO: ANALYSIS SUCCESSFUL, you can find the results at: https://sonarcloud.io/dashboard?id=XXXXX&branch=4.02
2022-11-18T23:59:38.3081421Z INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
2022-11-18T23:59:38.3082549Z INFO: More about the report processing at https://sonarcloud.io/api/ce/task?id=AYSNLv628weYbciPutTe
2022-11-18T23:59:38.3178021Z INFO: Analysis total time: 2:33.145 s
2022-11-18T23:59:38.3244833Z INFO: ------------------------------------------------------------------------
2022-11-18T23:59:38.3246103Z INFO: EXECUTION SUCCESS
2022-11-18T23:59:38.3247200Z INFO: ------------------------------------------------------------------------
2022-11-18T23:59:38.3247860Z INFO: Total time: 2:39.178s
2022-11-18T23:59:38.5078258Z INFO: Final Memory: 81M/280M
2022-11-18T23:59:38.5081252Z INFO: ------------------------------------------------------------------------
2022-11-18T23:59:39.0264803Z The SonarScanner CLI has finished
2022-11-18T23:59:39.0268393Z 23:59:39.026  Post-processing succeeded.
2022-11-18T23:59:39.0578307Z ##[section]Finishing: Run Code Analysis

Hi,

Thanks for the log. It was very helpful:

2022-11-18T23:57:17.1564031Z INFO: 0 files indexed
2022-11-18T23:57:17.1569568Z INFO: 0 files ignored because of inclusion/exclusion patterns
2022-11-18T23:57:17.1570864Z INFO: 1158 files ignored because of scm ignore settings

I guess you’ve got some specialized .gitignore values for the CI/build context? Analysis automatically ignores the same files you tell your SCM to ignore. You can turn that off by setting sonar.scm.exclusions.disabled=true. Details in the docs.

 
HTH,
Ann

I didn’t put any specialized exclusion or inclusion rules.
When I toggled “Disable the SCM Sensor” (Key: sonar.scm.disabled Default: false) to True, I start seeing an error that we are exceeding our limit for lines of code.

The project has tons of code which is generated code or code for testing. Is there a way we can avoid analyzing them?

Hi,

You don’t actually want to disable the scm sensor. As I said earlier, you want to set sonar.scm.exclusions.disabled.

And then you can set explicit exclusions to ignore the generated code.

 
HTH,
Ann