SonarCloud PR Scan The Whole File Instead Of New Changes Only

I’m using SonarCloud integrated with Azure DevOps (C# and js/ts). I setup PR scan and it SonarCloud detects modified files correctly. However, it scans the whole file instead of only new changes in those files. I only notice the change 2 weeks ago (it was scanning new changes only 2 weeks ago).

We’re using SonarCloudPrepare@3 in our pipeline yaml file. Below is the task command I’m using.

- task: SonarCloudPrepare@3
      inputs:
        SonarQube: 'SonarQube'
        organization: 'mycompany'
        scannerMode: 'dotnet'
        projectKey: 'My_Project_Key'
        projectName: 'project'
        extraProperties: $(sonarCloudPrepareExtraProperties)

Below is the log from SonarCloudAnalyze task in Azure Devops pipeline run

2026-04-09T21:37:04.3697745Z ##[section]Starting: SonarCloudAnalyze
2026-04-09T21:37:04.3702264Z ==============================================================================
2026-04-09T21:37:04.3702371Z Task         : Run Code Analysis
2026-04-09T21:37:04.3702442Z Description  : Run scanner and upload the results to SonarQube Cloud.
2026-04-09T21:37:04.3702531Z Version      : 3.4.3
2026-04-09T21:37:04.3702591Z Author       : sonarsource
2026-04-09T21:37:04.3702662Z Help         : 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/)
2026-04-09T21:37:04.3702832Z ==============================================================================
2026-04-09T21:37:04.5305154Z [command]/home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/bin/sonar-scanner
2026-04-09T21:37:06.5500067Z 21:37:06.530 INFO  Scanner configuration file: /home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/conf/sonar-scanner.properties
2026-04-09T21:37:06.5517388Z 21:37:06.550 INFO  Project root configuration file: NONE
2026-04-09T21:37:06.6380553Z 21:37:06.637 INFO  SonarScanner CLI 7.2.0.5079
2026-04-09T21:37:06.6399847Z 21:37:06.639 INFO  Linux 6.17.0-1008-azure amd64
2026-04-09T21:37:08.9271595Z 21:37:08.925 INFO  Communicating with SonarQube Cloud
2026-04-09T21:37:08.9273701Z 21:37:08.926 INFO  JRE provisioning: os[linux], arch[x86_64]
2026-04-09T21:37:13.1868875Z 21:37:13.184 INFO  Starting SonarScanner Engine...
2026-04-09T21:37:13.1871058Z 21:37:13.184 INFO  Java 21.0.9 Eclipse Adoptium (64-bit)
2026-04-09T21:37:14.7127541Z 21:37:14.712 INFO  Load global settings
2026-04-09T21:37:15.5778777Z 21:37:15.577 INFO  Load global settings (done) | time=863ms
2026-04-09T21:37:15.7179551Z 21:37:15.715 INFO  Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
2026-04-09T21:37:16.0979167Z 21:37:16.096 INFO  Loading required plugins
2026-04-09T21:37:16.0981100Z 21:37:16.096 INFO  Load plugins index
2026-04-09T21:37:16.2680556Z 21:37:16.267 INFO  Load plugins index (done) | time=170ms
2026-04-09T21:37:16.2702470Z 21:37:16.269 INFO  Load/download plugins
2026-04-09T21:37:17.3491380Z 21:37:17.346 INFO  Load/download plugins (done) | time=1079ms
2026-04-09T21:37:17.6386898Z 21:37:17.638 INFO  Loaded core extensions: sca, architecture, a3s
2026-04-09T21:37:18.0120531Z 21:37:18.011 INFO  Process project properties
2026-04-09T21:37:18.0382395Z 21:37:18.037 INFO  Project key: project_key
2026-04-09T21:37:18.0410370Z 21:37:18.040 INFO  Base dir: /home/vsts/work/1/s
2026-04-09T21:37:18.0452943Z 21:37:18.044 INFO  Working dir: /home/vsts/work/1/s/.scannerwork
2026-04-09T21:37:18.0698670Z 21:37:18.068 INFO  Found an active CI vendor: 'Azure DevOps'
2026-04-09T21:37:18.0745289Z 21:37:18.074 INFO  Load project branches
2026-04-09T21:37:18.5368391Z 21:37:18.536 INFO  Load project branches (done) | time=458ms
2026-04-09T21:37:18.5392552Z 21:37:18.538 INFO  Load project settings for component key: 'comp_key'
2026-04-09T21:37:18.9217640Z 21:37:18.918 INFO  Load project settings for component key: 'comp_key' (done) | time=379ms
2026-04-09T21:37:19.9042236Z 21:37:19.903 INFO  Check ALM binding of project 'project'
2026-04-09T21:37:20.0651016Z 21:37:20.063 INFO  Detected project binding: BOUND
2026-04-09T21:37:20.0677651Z 21:37:20.067 INFO  Check ALM binding of project 'project' (done) | time=161ms
2026-04-09T21:37:20.0725718Z 21:37:20.072 INFO  Load project pull requests
2026-04-09T21:37:20.5086683Z 21:37:20.506 INFO  Load project pull requests (done) | time=436ms
2026-04-09T21:37:20.5146642Z 21:37:20.513 INFO  Load branch configuration
2026-04-09T21:37:21.2546772Z 21:37:21.252 INFO  Load branch configuration (done) | time=739ms
2026-04-09T21:37:21.2690447Z 21:37:21.268 INFO  Load quality profiles
2026-04-09T21:37:21.8764661Z 21:37:21.875 INFO  Load quality profiles (done) | time=607ms
2026-04-09T21:37:21.9291578Z 21:37:21.926 INFO  Create analysis
2026-04-09T21:37:22.2540447Z 21:37:22.251 INFO  Create analysis (done) | time=326ms
2026-04-09T21:37:22.2702672Z 21:37:22.269 INFO  Load active rules
2026-04-09T21:37:23.2497142Z 21:37:23.245 INFO  Load active rules (done) | time=975ms
2026-04-09T21:37:23.4897447Z 21:37:23.489 INFO  Organization key: org_key
2026-04-09T21:37:23.4928059Z 21:37:23.490 INFO  Pull request 3970 for merge into Dev from lhtran/7740-FedEx-Void-Api
2026-04-09T21:37:23.5254042Z 21:37:23.525 INFO  Preprocessing files...
2026-04-09T21:37:26.9617008Z 21:37:26.960 INFO  8 languages detected in 5647 preprocessed files (done) | time=3435ms
2026-04-09T21:37:26.9620223Z 21:37:26.961 INFO  8498 files ignored because of inclusion/exclusion patterns
2026-04-09T21:37:26.9622268Z 21:37:26.961 INFO  3821 files ignored because of scm ignore settings
2026-04-09T21:37:27.0324577Z 21:37:27.029 INFO  Loading plugins for detected languages
2026-04-09T21:37:27.0325010Z 21:37:27.030 INFO  Load/download plugins
2026-04-09T21:37:29.1903731Z 21:37:29.189 INFO  Load/download plugins (done) | time=2158ms
2026-04-09T21:37:29.5978454Z 21:37:29.597 INFO  Executing phase 2 project builders
2026-04-09T21:37:29.5980579Z 21:37:29.597 INFO  Executing phase 2 project builders (done) | time=0ms
2026-04-09T21:37:29.6099191Z 21:37:29.609 INFO  Load project repositories
2026-04-09T21:37:31.1504637Z 21:37:31.149 INFO  Load project repositories (done) | time=1540ms
2026-04-09T21:37:31.1540909Z 21:37:31.153 INFO  SCM collecting changed files in the branch
2026-04-09T21:37:31.2093927Z 21:37:31.207 INFO  Merge base sha1: 2c6d4ad7e9429f0d60c25287b68be7e8df75a8c0
2026-04-09T21:37:31.3569491Z 21:37:31.356 INFO  SCM collecting changed files in the branch (done) | time=200ms
2026-04-09T21:37:31.3707011Z 21:37:31.369 INFO  Indexing files...
2026-04-09T21:37:31.3710788Z 21:37:31.369 INFO  Project configuration:
2026-04-09T21:37:31.3715196Z 21:37:31.369 INFO    Excluded sources: **/*.pfx, **/*.gif, **/*.ico, **/*.eot, **/*.tiff, **/*.otf, **/*.tff, **/*.woff, **/*.woff2, **/*.xcf, **/build-wrapper-dump.json
2026-04-09T21:37:31.7331751Z 21:37:31.732 INFO  5646 files indexed (done) | time=364ms
2026-04-09T21:37:31.7543001Z 21:37:31.753 INFO  Quality profile for cs: My way
2026-04-09T21:37:31.7573408Z 21:37:31.753 INFO  Quality profile for css: Sonar way
2026-04-09T21:37:31.7579423Z 21:37:31.756 INFO  Quality profile for js: Sonar way
2026-04-09T21:37:31.7610224Z 21:37:31.756 INFO  Quality profile for json: Sonar way
2026-04-09T21:37:31.7636600Z 21:37:31.760 INFO  Quality profile for ts: My way
2026-04-09T21:37:31.7658390Z 21:37:31.761 INFO  Quality profile for tsql: Sonar way
2026-04-09T21:37:31.7658770Z 21:37:31.762 INFO  Quality profile for web: Sonar way
2026-04-09T21:37:31.7659122Z 21:37:31.762 INFO  Quality profile for xml: Sonar way
2026-04-09T21:37:31.7659472Z 21:37:31.762 INFO  ------------- Run sensors on module lynx
2026-04-09T21:37:31.9015154Z 21:37:31.900 INFO  Load metrics repository
2026-04-09T21:37:32.0546988Z 21:37:32.053 INFO  Load metrics repository (done) | time=151ms
2026-04-09T21:37:32.0637196Z 21:37:32.061 INFO  Sensor cache enabled
2026-04-09T21:37:32.0730605Z 21:37:32.072 INFO  Load sensor cache
2026-04-09T21:37:32.4726386Z 21:37:32.470 INFO  Load sensor cache (404) | time=395ms
2026-04-09T21:37:34.6359033Z 21:37:34.632 INFO  Reflections took 100 ms to scan 1 urls, producing 25 keys and 261 values
2026-04-09T21:37:34.8854201Z 21:37:34.884 INFO  Sensor C# Project Type Information [csharpenterprise]
2026-04-09T21:37:34.8870722Z 21:37:34.886 INFO  Sensor C# Project Type Information [csharpenterprise] (done) | time=2ms
2026-04-09T21:37:34.8888155Z 21:37:34.887 INFO  Sensor C# Analysis Log [csharpenterprise]
2026-04-09T21:37:34.8967810Z 21:37:34.896 INFO  Sensor C# Analysis Log [csharpenterprise] (done) | time=10ms
2026-04-09T21:37:34.8970570Z 21:37:34.896 INFO  Sensor C# Method Declarations [csharpenterprise]
2026-04-09T21:37:34.8977530Z 21:37:34.897 INFO  Sensor C# Method Declarations [csharpenterprise] (done) | time=0ms
2026-04-09T21:37:34.8980632Z 21:37:34.897 INFO  Sensor C# Telemetry [csharpenterprise]
2026-04-09T21:37:34.8998797Z 21:37:34.899 INFO  Sensor C# Telemetry [csharpenterprise] (done) | time=0ms
2026-04-09T21:37:34.9018015Z 21:37:34.899 INFO  Sensor C# Telemetry Json [csharpenterprise]
2026-04-09T21:37:34.9021514Z 21:37:34.900 INFO  Sensor C# Telemetry Json [csharpenterprise] (done) | time=0ms
2026-04-09T21:37:34.9023853Z 21:37:34.901 INFO  Sensor C# Properties [csharpenterprise]
2026-04-09T21:37:34.9025457Z 21:37:34.901 INFO  Sensor C# Properties [csharpenterprise] (done) | time=0ms
2026-04-09T21:37:34.9025848Z 21:37:34.902 INFO  Sensor C# A3S Context Sensor [csharpenterprise]
2026-04-09T21:37:35.4045630Z 21:37:35.402 INFO  Sensor C# A3S Context Sensor [csharpenterprise] (done) | time=499ms
2026-04-09T21:37:35.4046512Z 21:37:35.403 INFO  Sensor IaC CloudFormation Sensor [iac]
2026-04-09T21:37:35.5551793Z 21:37:35.554 INFO  There are no files to be analyzed for the CloudFormation language
2026-04-09T21:37:35.5554784Z 21:37:35.555 INFO  Sensor IaC CloudFormation Sensor [iac] (done) | time=152ms
2026-04-09T21:37:35.5557039Z 21:37:35.555 INFO  Sensor IaC cfn-lint report Sensor [iac]
2026-04-09T21:37:35.5586351Z 21:37:35.558 INFO  Sensor IaC cfn-lint report Sensor [iac] (done) | time=0ms
2026-04-09T21:37:35.5589884Z 21:37:35.558 INFO  Sensor IaC hadolint report Sensor [iac]
2026-04-09T21:37:35.5592679Z 21:37:35.558 INFO  Sensor IaC hadolint report Sensor [iac] (done) | time=0ms
2026-04-09T21:37:35.5594652Z 21:37:35.558 INFO  Sensor IaC Azure Resource Manager Sensor [iac]
2026-04-09T21:37:35.5597263Z 21:37:35.559 INFO  Sensor IaC Azure Resource Manager Sensor is restricted to changed files only
2026-04-09T21:37:35.8505000Z 21:37:35.849 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Syncfusion/Syncfusion.DocIO.Base.xml at line 27459 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:36.2378811Z 21:37:36.236 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/Company.WebAPI/fonts/3 of 9 Barcode.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:36.7454195Z 21:37:36.744 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/Company.WebAPI/Images/Company_Logo_for_Carrier_Label.bmp at line 2 for encoding windows-1252. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:36.8488298Z 21:37:36.848 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Company.Domain/Model/ERx/Transport.cs at line 3747 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:37.2689574Z 21:37:37.266 WARN  Invalid character encountered in file /home/vsts/work/1/s/cert/grpc_docs.cer at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:37.5127122Z 21:37:37.512 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Company.ERx.Core/ecl.xsd at line 292 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:37.5398031Z 21:37:37.537 WARN  Invalid character encountered in file /home/vsts/work/1/s/Company.Physician.Portal/WebApp/fonts/glyphicons-halflings-regular.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:37.8158601Z 21:37:37.815 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Company.PDF/Resources/square.wmf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:38.2270000Z 21:37:38.226 WARN  Invalid character encountered in file /home/vsts/work/1/s/SQL/StoredProcs/Reseed.ReseedDatabase.StoredProcedure.sql at line 110 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:38.3656229Z 21:37:38.365 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Company.PDF/Clinical/VisitEmailInfo.cs at line 379 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-09T21:37:38.3824488Z 21:37:38.381 INFO  There are no files to be analyzed for the Azure Resource Manager language
2026-04-09T21:37:38.3826632Z 21:37:38.381 INFO  Sensor IaC Azure Resource Manager Sensor [iac] (done) | time=2827ms
2026-04-09T21:37:38.3828355Z 21:37:38.382 INFO  Sensor Java Config Sensor [iac]
2026-04-09T21:37:38.4589951Z 21:37:38.456 INFO  There are no files to be analyzed for the Java language
2026-04-09T21:37:38.4591973Z 21:37:38.456 INFO  Sensor Java Config Sensor [iac] (done) | time=72ms
2026-04-09T21:37:38.4616511Z 21:37:38.457 INFO  Sensor IaC Docker Sensor [iac]
2026-04-09T21:37:38.4634998Z 21:37:38.457 INFO  Sensor IaC Docker Sensor is restricted to changed files only
2026-04-09T21:37:38.4637130Z 21:37:38.457 INFO  There are no files to be analyzed for the Docker language
2026-04-09T21:37:38.4656494Z 21:37:38.457 INFO  Sensor IaC Docker Sensor [iac] (done) | time=1ms
2026-04-09T21:37:38.4658362Z 21:37:38.457 INFO  Sensor IaC spectral report Sensor [iac]
2026-04-09T21:37:38.4659336Z 21:37:38.457 INFO  Sensor IaC spectral report Sensor [iac] (done) | time=1ms
2026-04-09T21:37:38.4676384Z 21:37:38.457 INFO  Sensor IaC GitHub Actions Sensor [iac]
2026-04-09T21:37:38.4678335Z 21:37:38.461 INFO  There are no files to be analyzed for the GitHub Actions language
2026-04-09T21:37:38.4680018Z 21:37:38.462 INFO  Sensor IaC GitHub Actions Sensor [iac] (done) | time=0ms
2026-04-09T21:37:38.4681740Z 21:37:38.462 INFO  Sensor IaC actionlint report Sensor [iac]
2026-04-09T21:37:38.4706523Z 21:37:38.462 INFO  Sensor IaC actionlint report Sensor [iac] (done) | time=0ms
2026-04-09T21:37:38.4745373Z 21:37:38.462 INFO  Sensor IaC Azure Pipelines Sensor [iac]
2026-04-09T21:37:38.4747818Z 21:37:38.470 INFO  There are no files to be analyzed for the Azure Pipelines language
2026-04-09T21:37:38.4749787Z 21:37:38.471 INFO  Sensor IaC Azure Pipelines Sensor [iac] (done) | time=10ms
2026-04-09T21:37:38.4751882Z 21:37:38.471 INFO  Sensor IaC Shell Sensor [iac]
2026-04-09T21:37:38.4752256Z 21:37:38.471 INFO  There are no files to be analyzed for the Shell language
2026-04-09T21:37:38.4752605Z 21:37:38.471 INFO  Sensor IaC Shell Sensor [iac] (done) | time=0ms
2026-04-09T21:37:38.4752922Z 21:37:38.472 INFO  Sensor T-SQL Sensor [tsql]
2026-04-09T21:37:38.4768271Z 21:37:38.476 INFO  Sensor T-SQL Sensor is restricted to changed files only
2026-04-09T21:37:38.4909608Z 21:37:38.490 INFO  0 source files to be analyzed
2026-04-09T21:37:38.4911339Z 21:37:38.490 INFO  Sensor T-SQL Sensor [tsql] (done) | time=19ms
2026-04-09T21:37:38.4913194Z 21:37:38.490 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript]
2026-04-09T21:37:38.8232531Z 21:37:38.822 INFO  Detected os: Linux arch: amd64 alpine: false. Platform: LINUX_X64
2026-04-09T21:37:38.8233269Z 21:37:38.822 INFO  Deploy location /home/vsts/.sonar/js/node-runtime, tagetRuntime: /home/vsts/.sonar/js/node-runtime/node,  version: /home/vsts/.sonar/js/node-runtime/version.txt
2026-04-09T21:37:41.6037591Z 21:37:41.602 INFO  Using embedded Node.js runtime.
2026-04-09T21:37:41.6038319Z 21:37:41.603 INFO  Using Node.js executable: '/home/vsts/.sonar/js/node-runtime/node'.
2026-04-09T21:37:43.5585601Z 21:37:43.558 INFO  Memory configuration: OS (7938 MB), Node.js (2240 MB).
2026-04-09T21:37:43.6916210Z 21:37:43.691 INFO  WebSocket client connected on /ws
2026-04-09T21:37:43.6954209Z 21:37:43.694 INFO  Plugin version: [12.3.0.39932]
2026-04-09T21:37:47.1275660Z 21:37:47.127 INFO  Found 1 tsconfig.json file(s): [/home/vsts/work/1/s/LynxWebApp/Company.LynxWebApp/tsconfig.json]
2026-04-09T21:38:33.4106295Z ##[error]21:38:33.399 ERROR Error: Unknown word -->
2026-04-09T21:38:33.4113420Z 21:38:33.399 ERROR Error: Unknown word -->
2026-04-09T21:38:33.4115157Z ##[error]21:38:33.400 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
21:38:33.400 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
21:38:33.400 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
2026-04-09T21:38:33.4137213Z 21:38:33.400 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
2026-04-09T21:38:33.4137699Z 21:38:33.400 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
2026-04-09T21:38:33.4138155Z 21:38:33.400 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
2026-04-09T21:38:33.4140735Z ##[error]21:38:33.406 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
21:38:33.407 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
21:38:33.407 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
21:38:33.407 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
21:38:33.407 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
21:38:33.407 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
21:38:33.407 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-09T21:38:33.4142493Z 21:38:33.406 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
2026-04-09T21:38:33.4142977Z 21:38:33.407 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
2026-04-09T21:38:33.4143460Z 21:38:33.407 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
2026-04-09T21:38:33.4143939Z 21:38:33.407 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
2026-04-09T21:38:33.4144417Z 21:38:33.407 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
2026-04-09T21:38:33.4144960Z 21:38:33.407 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
2026-04-09T21:38:33.4145463Z 21:38:33.407 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-09T21:38:33.4146279Z 21:38:33.407 WARN  Failed to parse file [LynxWebApp/Company.LynxWebApp/App_Offline.ONLINE.htm] at line 59: Unknown word -->
2026-04-09T21:38:34.9006012Z 21:38:34.899 INFO  JasminAstConsumer done
2026-04-09T21:38:34.9076535Z 21:38:34.900 INFO  Hit the cache for 0 out of 895
2026-04-09T21:38:34.9088309Z 21:38:34.902 INFO  Miss the cache for 895 out of 895: FILE_CHANGED [895/895]
2026-04-09T21:38:34.9089647Z 21:38:34.902 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript] (done) | time=56411ms
2026-04-09T21:38:34.9106526Z 21:38:34.903 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend]
2026-04-09T21:38:34.9108507Z 21:38:34.903 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend] (done) | time=0ms
2026-04-09T21:38:34.9110474Z 21:38:34.903 INFO  Sensor HTML [web]
2026-04-09T21:38:34.9126468Z 21:38:34.907 INFO  Sensor HTML is restricted to changed files only
2026-04-09T21:38:34.9128798Z 21:38:34.908 INFO  Sensor HTML [web] (done) | time=4ms
2026-04-09T21:38:34.9146523Z 21:38:34.908 INFO  Sensor XML Sensor [xml]
2026-04-09T21:38:34.9150541Z 21:38:34.908 INFO  Sensor XML Sensor is restricted to changed files only
2026-04-09T21:38:34.9220942Z 21:38:34.908 INFO  Sensor XML Sensor [xml] (done) | time=0ms
2026-04-09T21:38:34.9228003Z 21:38:34.908 INFO  Sensor JasminFileCollectorSensor [jasmin]
2026-04-09T21:38:34.9229730Z 21:38:34.909 INFO  Sensor JasminFileCollectorSensor [jasmin] (done) | time=2ms
2026-04-09T21:38:34.9268650Z 21:38:34.925 INFO  Sensor IaC JSON Sensor [iac]
2026-04-09T21:38:34.9270559Z 21:38:34.925 INFO  Sensor for language "JSON" is enabled by a feature flag. You can disable it by setting "sonar.json.activate" to false.
2026-04-09T21:38:34.9290368Z 21:38:34.926 INFO  979 source files to be analyzed
2026-04-09T21:38:34.9292238Z 21:38:34.926 INFO  Creating TypeScript(5.9.3) program with configuration file /home/vsts/work/1/s/LynxWebApp/Company.LynxWebApp/tsconfig.json [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-09T21:38:34.9336582Z 21:38:34.926 INFO  Analyzing 444 file(s) from tsconfig /home/vsts/work/1/s/LynxWebApp/Company.LynxWebApp/tsconfig.json (506 total files in program)
2026-04-09T21:38:34.9338472Z 21:38:34.926 INFO  15 source files to be analyzed
2026-04-09T21:38:34.9678547Z 21:38:34.965 INFO  Analyzing 353 file(s) using merged compiler options [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-09T21:38:35.0005448Z 21:38:35.000 INFO  979/979 source files have been analyzed
2026-04-09T21:38:35.0545180Z 21:38:35.053 INFO  15/15 source files have been analyzed
2026-04-09T21:38:35.0551141Z 21:38:35.054 INFO  Sensor IaC JSON Sensor [iac] (done) | time=144ms
2026-04-09T21:38:35.0578484Z 21:38:35.056 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise]
2026-04-09T21:38:35.0580473Z 21:38:35.057 INFO  Sensor EnterpriseTextAndSecretsSensor is restricted to changed files only
2026-04-09T21:38:35.0732752Z 21:38:35.071 INFO  Available processors: 2
2026-04-09T21:38:35.0759641Z 21:38:35.075 INFO  Using 2 threads for analysis.
2026-04-09T21:38:35.5480752Z 21:38:35.547 INFO  The property "sonar.tests" is not set. To improve the analysis accuracy, we categorize a file as a test file if any of the following is true:
2026-04-09T21:38:35.5483852Z   * The filename starts with "test"
2026-04-09T21:38:35.5486836Z   * The filename contains "test." or "tests."
2026-04-09T21:38:35.5492434Z   * Any directory in the file path is named: "doc", "docs", "test", "tests", "mock" or "mocks"
2026-04-09T21:38:35.5497105Z   * Any directory in the file path has a name ending in "test" or "tests"
2026-04-09T21:38:35.5497257Z 
2026-04-09T21:38:35.6293682Z 21:38:35.628 INFO  Start fetching files for the text and secrets analysis
2026-04-09T21:38:35.6360854Z 21:38:35.635 INFO  Using Git CLI to retrieve dirty files
2026-04-09T21:38:36.0932729Z 21:38:36.092 INFO  Retrieving language associated files and files included via "sonar.text.inclusions" that are tracked by git
2026-04-09T21:38:36.0959919Z 21:38:36.095 INFO  Starting the text and secrets analysis
2026-04-09T21:38:36.0975678Z 21:38:36.096 INFO  8 source files to be analyzed for the text and secrets analysis
2026-04-09T21:38:36.5569737Z 21:38:36.556 INFO  8/8 source files have been analyzed for the text and secrets analysis
2026-04-09T21:38:36.5596127Z 21:38:36.558 INFO  Start fetching files for the binary file analysis
2026-04-09T21:38:36.5612450Z 21:38:36.560 INFO  There are no files to be analyzed for the binary file analysis
2026-04-09T21:38:36.5631708Z 21:38:36.560 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise] (done) | time=1503ms
2026-04-09T21:38:36.5647675Z 21:38:36.562 INFO  Sensor CSharpSecuritySensor [security]
2026-04-09T21:38:36.5703120Z 21:38:36.568 INFO  27 taint analysis rules enabled.
2026-04-09T21:38:36.5706456Z 21:38:36.570 INFO  No UCFGs have been included for analysis.
2026-04-09T21:38:36.5731184Z 21:38:36.572 INFO  csharp security sensor: Begin: 2026-04-09T21:38:36.563537915Z, End: 2026-04-09T21:38:36.571427107Z, Duration: 00:00:00.007
2026-04-09T21:38:36.5731755Z   Load type hierarchy and UCFGs: Begin: 2026-04-09T21:38:36.567563853Z, End: 2026-04-09T21:38:36.569626385Z, Duration: 00:00:00.002
2026-04-09T21:38:36.5732271Z     Load type hierarchy: Begin: 2026-04-09T21:38:36.567606022Z, End: 2026-04-09T21:38:36.568887151Z, Duration: 00:00:00.001
2026-04-09T21:38:36.5732797Z     Load UCFGs: Begin: 2026-04-09T21:38:36.569057650Z, End: 2026-04-09T21:38:36.569499918Z, Duration: 00:00:00.000
2026-04-09T21:38:36.5733220Z 21:38:36.572 INFO  csharp security sensor peak memory: 501 MB
2026-04-09T21:38:36.5767756Z 21:38:36.574 INFO  Sensor CSharpSecuritySensor [security] (done) | time=12ms
2026-04-09T21:38:36.5830042Z 21:38:36.582 INFO  ------------- Run sensors on project
2026-04-09T21:38:36.7583014Z 21:38:36.755 INFO  Sensor C# Telemetry processor [csharpenterprise]
2026-04-09T21:38:36.7612999Z 21:38:36.759 INFO  Sensor C# Telemetry processor [csharpenterprise] (done) | time=1ms
2026-04-09T21:38:36.7614090Z 21:38:36.759 INFO  Sensor C# Telemetry Json processor [csharpenterprise]
2026-04-09T21:38:36.7616300Z 21:38:36.760 INFO  Sensor C# Telemetry Json processor [csharpenterprise] (done) | time=1ms
2026-04-09T21:38:36.7620655Z 21:38:36.760 INFO  Sensor C# [csharpenterprise]
2026-04-09T21:38:36.7621226Z 21:38:36.760 WARN  Your project contains C# files which cannot be analyzed with the scanner you are using. To analyze C# or VB.NET, you must use the SonarScanner for .NET 5.x or higher, see https://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html
2026-04-09T21:38:36.7621840Z 21:38:36.760 INFO  Sensor C# [csharpenterprise] (done) | time=0ms
2026-04-09T21:38:36.7622218Z 21:38:36.760 INFO  Sensor Analysis Warnings import [csharpenterprise]
2026-04-09T21:38:36.7622614Z 21:38:36.760 INFO  Sensor Analysis Warnings import [csharpenterprise] (done) | time=0ms
2026-04-09T21:38:36.7623002Z 21:38:36.760 INFO  Sensor C# File Caching Sensor [csharpenterprise]
2026-04-09T21:38:36.7652073Z 21:38:36.761 INFO  Sensor C# File Caching Sensor [csharpenterprise] (done) | time=0ms
2026-04-09T21:38:36.7653795Z 21:38:36.763 INFO  Sensor C# A3S Context processor [csharpenterprise]
2026-04-09T21:38:36.7655362Z 21:38:36.764 INFO  A3S is disabled
2026-04-09T21:38:36.7657014Z 21:38:36.764 INFO  Sensor C# A3S Context processor [csharpenterprise] (done) | time=0ms
2026-04-09T21:38:36.7657400Z 21:38:36.764 INFO  Sensor JsSecuritySensorV2 [jasmin]
2026-04-09T21:38:36.8267678Z 21:38:36.824 INFO  Unchanged files can be skipped in the current context and all relevant files are unchanged. Skipping taint analysis.
2026-04-09T21:38:36.8268896Z 21:38:36.825 INFO  Sensor JsSecuritySensorV2 [jasmin] (done) | time=60ms
2026-04-09T21:38:36.8270668Z 21:38:36.825 INFO  Sensor CveReachabilitySensor [cvereachability]
2026-04-09T21:38:36.8272002Z 21:38:36.825 INFO  Skipping CveReachabilitySensor
2026-04-09T21:38:36.8273231Z 21:38:36.825 INFO  Sensor CveReachabilitySensor [cvereachability] (done) | time=0ms
2026-04-09T21:38:36.8275325Z 21:38:36.825 INFO  Sensor JsArchitectureSensor [architecture]
2026-04-09T21:38:36.8664045Z 21:38:36.866 INFO  Found 1 potential Udg file location(s) for "js" in "/home/vsts/work/1/s/.scannerwork"
2026-04-09T21:38:36.8679406Z 21:38:36.867 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/js
2026-04-09T21:38:36.8804830Z 21:38:36.880 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-09T21:38:36.8902292Z 21:38:36.886 INFO  * Protobuf reading starting | memory total=599 | free=71 | used=527 (MB)
2026-04-09T21:38:36.8904371Z 21:38:36.887 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/js"
2026-04-09T21:38:37.0694398Z 21:38:37.068 INFO  * Files successfully loaded: "353" out of "353"
2026-04-09T21:38:37.0697856Z 21:38:37.069 INFO  * Purging externals (components not scanned) from graphs
2026-04-09T21:38:37.0729253Z 21:38:37.072 INFO  * Purging excluded nodes from graphs
2026-04-09T21:38:37.0857686Z 21:38:37.085 INFO  * Protobuf reading complete | memory total=599 | free=52 | used=546 (MB)
2026-04-09T21:38:37.1798720Z 21:38:37.177 INFO  * Build architecture.graph.js.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=599 | free=42 | used=556 (MB)
2026-04-09T21:38:37.2012603Z 21:38:37.200 INFO  No directives configured
2026-04-09T21:38:37.2067981Z 21:38:37.206 INFO  * No intended architecture defined or detected, using an empty model
2026-04-09T21:38:37.5785726Z 21:38:37.577 INFO  Sensor JsArchitectureSensor [architecture] (done) | time=755ms
2026-04-09T21:38:37.5787210Z 21:38:37.578 INFO  Sensor TsArchitectureSensor [architecture]
2026-04-09T21:38:37.6024155Z 21:38:37.601 INFO  Found 1 potential Udg file location(s) for "ts" in "/home/vsts/work/1/s/.scannerwork"
2026-04-09T21:38:37.6026830Z 21:38:37.602 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/ts
2026-04-09T21:38:37.6027845Z 21:38:37.602 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-09T21:38:37.6051004Z 21:38:37.604 INFO  * Protobuf reading starting | memory total=599 | free=341 | used=257 (MB)
2026-04-09T21:38:37.6058805Z 21:38:37.604 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/ts"
2026-04-09T21:38:37.6767020Z 21:38:37.673 INFO  * Files successfully loaded: "444" out of "444"
2026-04-09T21:38:37.6781521Z 21:38:37.677 INFO  * Purging externals (components not scanned) from graphs
2026-04-09T21:38:37.6783282Z 21:38:37.677 INFO  * Purging excluded nodes from graphs
2026-04-09T21:38:37.6886235Z 21:38:37.688 INFO  * Protobuf reading complete | memory total=599 | free=330 | used=268 (MB)
2026-04-09T21:38:37.7045206Z 21:38:37.704 INFO  * Build architecture.graph.ts.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=599 | free=314 | used=284 (MB)
2026-04-09T21:38:37.7207703Z 21:38:37.717 INFO  No directives configured
2026-04-09T21:38:37.7209308Z 21:38:37.718 INFO  * No intended architecture defined or detected, using an empty model
2026-04-09T21:38:37.8902066Z 21:38:37.889 INFO  Sensor TsArchitectureSensor [architecture] (done) | time=311ms
2026-04-09T21:38:37.8931555Z 21:38:37.892 INFO  Sensor CSharpArchitectureSensor [architecture]
2026-04-09T21:38:38.3125460Z 21:38:38.312 INFO  Found 0 potential Udg file location(s) for "cs" in "/home/vsts/work/1/s"
2026-04-09T21:38:38.3137925Z 21:38:38.313 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-09T21:38:38.3181494Z 21:38:38.317 INFO  * Protobuf reading starting | memory total=599 | free=190 | used=408 (MB)
2026-04-09T21:38:38.3183328Z 21:38:38.317 INFO  * Protobuf reading complete | memory total=599 | free=190 | used=408 (MB)
2026-04-09T21:38:38.3242059Z 21:38:38.323 INFO  * Build architecture.graph.cs.namespace_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=599 | free=190 | used=408 (MB)
2026-04-09T21:38:38.3274537Z 21:38:38.326 INFO  No directives configured
2026-04-09T21:38:38.3276725Z 21:38:38.326 INFO  * No intended architecture defined or detected, using an empty model
2026-04-09T21:38:38.3278150Z 21:38:38.327 INFO  Sensor CSharpArchitectureSensor [architecture] (done) | time=435ms
2026-04-09T21:38:38.3278741Z 21:38:38.327 INFO  Sensor Zero Coverage Sensor
2026-04-09T21:38:38.5990083Z 21:38:38.598 INFO  Sensor Zero Coverage Sensor (done) | time=271ms
2026-04-09T21:38:38.5999976Z 21:38:38.599 INFO  Sensor Architecture Telemetry [architecture]
2026-04-09T21:38:38.6028013Z 21:38:38.600 INFO  Sensor Architecture Telemetry [architecture] (done) | time=1ms
2026-04-09T21:38:38.8411030Z 21:38:38.840 INFO  ------------- Gather SCA dependencies on project
2026-04-09T21:38:39.4726221Z 21:38:39.470 INFO  Dependency analysis skipped
2026-04-09T21:38:39.7239210Z 21:38:39.723 INFO  CPD Executor 191 files had no CPD blocks
2026-04-09T21:38:39.7247204Z 21:38:39.724 INFO  CPD Executor Calculating CPD for 692 files
2026-04-09T21:38:40.0779609Z 21:38:40.075 INFO  CPD Executor CPD calculation finished (done) | time=350ms
2026-04-09T21:38:40.0882338Z 21:38:40.084 INFO  SCM Publisher SCM provider for this project is: git
2026-04-09T21:38:40.0884396Z 21:38:40.087 INFO  SCM Publisher 8 source files to be analyzed
2026-04-09T21:38:40.8760726Z 21:38:40.874 INFO  SCM Publisher 8/8 source files have been analyzed (done) | time=789ms
2026-04-09T21:38:40.8849114Z 21:38:40.884 INFO  SCM revision ID 'ac19d732b9a9d371d6297fcde393245ef96eda57'
2026-04-09T21:38:41.3649910Z 21:38:41.364 INFO  SCM writing changed lines
2026-04-09T21:38:41.3765667Z 21:38:41.376 INFO  Merge base sha1: 2c6d4ad7e9429f0d60c25287b68be7e8df75a8c0
2026-04-09T21:38:41.5411300Z 21:38:41.540 INFO  SCM writing changed lines (done) | time=176ms
2026-04-09T21:38:42.7956390Z 21:38:42.795 INFO  Analysis report generated in 1838ms, dir size=2 MB
2026-04-09T21:38:43.9923019Z 21:38:43.991 INFO  Analysis report compressed in 1195ms, zip size=2 MB
2026-04-09T21:38:48.6186781Z 21:38:48.616 INFO  Analysis report uploaded in 4625ms
2026-04-09T21:38:48.6200258Z 21:38:48.619 INFO  ANALYSIS SUCCESSFUL, you can find the results at: 
2026-04-09T21:38:48.6202170Z 21:38:48.619 INFO  Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
2026-04-09T21:38:48.6246011Z 21:38:48.621 INFO  More about the report processing at https://sonarcloud.io/api/ce/task?id=AZ10Lvgplc9jZNEx9ooI
2026-04-09T21:38:48.6246644Z 21:38:48.621 INFO  ------------- Upload SCA dependency files
2026-04-09T21:38:51.9696787Z 21:38:51.968 INFO  Successfully sent architecture data
2026-04-09T21:38:52.4325231Z 21:38:52.432 INFO  Analysis total time: 1:34.795 s
2026-04-09T21:38:52.4357831Z 21:38:52.433 INFO  SonarScanner Engine completed successfully
2026-04-09T21:38:52.8240615Z 21:38:52.823 INFO  EXECUTION SUCCESS
2026-04-09T21:38:52.8252064Z 21:38:52.824 INFO  Total time: 1:46.492s
2026-04-09T21:38:53.1469481Z 
2026-04-09T21:38:53.1542427Z ##[section]Finishing: SonarCloudAnalyze

Hi,

Welcome to the community!

While PR analysis is confined to changed files under certain circumstances, I’m not sure it’s ever been contained to only changed lines. You’ve shared your analysis log (:face_blowing_a_kiss:) but could you point me to what, specifically, makes you think there has been a behavior change? Having the before and after logs to compare side-by-side would be helpful too.

 
Thx,
Ann

So I notice if I PR to a branch not a main branch (cut from the main branch), it only analyzes changed lines. If I PR to the main branch, it analyzes changed files.

Below is the log where I PR to a non main branch. It only analyzes changed lines:

2026-04-13T16:48:54.0136486Z ##[section]Starting: SonarCloudAnalyze
2026-04-13T16:48:54.0140987Z ==============================================================================
2026-04-13T16:48:54.0141089Z Task         : Run Code Analysis
2026-04-13T16:48:54.0141169Z Description  : Run scanner and upload the results to SonarQube Cloud.
2026-04-13T16:48:54.0141253Z Version      : 3.4.3
2026-04-13T16:48:54.0141318Z Author       : sonarsource
2026-04-13T16:48:54.0141433Z Help         : 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/)
2026-04-13T16:48:54.0141605Z ==============================================================================
2026-04-13T16:48:54.1985050Z [command]/home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/bin/sonar-scanner
2026-04-13T16:48:55.8776714Z 16:48:55.853 INFO  Scanner configuration file: /home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/conf/sonar-scanner.properties
2026-04-13T16:48:55.8778990Z 16:48:55.867 INFO  Project root configuration file: NONE
2026-04-13T16:48:55.9324457Z 16:48:55.931 INFO  SonarScanner CLI 7.2.0.5079
2026-04-13T16:48:55.9340728Z 16:48:55.933 INFO  Linux 6.17.0-1010-azure amd64
2026-04-13T16:48:57.9043618Z 16:48:57.902 INFO  Communicating with SonarQube Cloud
2026-04-13T16:48:57.9063833Z 16:48:57.902 INFO  JRE provisioning: os[linux], arch[x86_64]
2026-04-13T16:49:01.7244124Z 16:49:01.721 INFO  Starting SonarScanner Engine...
2026-04-13T16:49:01.7278082Z 16:49:01.726 INFO  Java 21.0.9 Eclipse Adoptium (64-bit)
2026-04-13T16:49:03.4114022Z 16:49:03.406 INFO  Load global settings
2026-04-13T16:49:04.0175214Z 16:49:04.017 INFO  Load global settings (done) | time=610ms
2026-04-13T16:49:04.1679246Z 16:49:04.165 INFO  Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
2026-04-13T16:49:04.5395567Z 16:49:04.537 INFO  Loading required plugins
2026-04-13T16:49:04.5433879Z 16:49:04.538 INFO  Load plugins index
2026-04-13T16:49:04.6694491Z 16:49:04.667 INFO  Load plugins index (done) | time=132ms
2026-04-13T16:49:04.6716763Z 16:49:04.668 INFO  Load/download plugins
2026-04-13T16:49:05.5757550Z 16:49:05.573 INFO  Load/download plugins (done) | time=905ms
2026-04-13T16:49:05.8214178Z 16:49:05.817 INFO  Loaded core extensions: sca, architecture, a3s
2026-04-13T16:49:06.2255101Z 16:49:06.192 INFO  Process project properties
2026-04-13T16:49:06.2303592Z 16:49:06.215 INFO  Project key: AISHealthcare_lynx
2026-04-13T16:49:06.2424215Z 16:49:06.216 INFO  Base dir: /home/vsts/work/1/s
2026-04-13T16:49:06.2443588Z 16:49:06.217 INFO  Working dir: /home/vsts/work/1/s/.scannerwork
2026-04-13T16:49:06.2445513Z 16:49:06.234 INFO  Found an active CI vendor: 'Azure DevOps'
2026-04-13T16:49:06.2446158Z 16:49:06.234 INFO  Load project branches
2026-04-13T16:49:06.5741903Z 16:49:06.567 INFO  Load project branches (done) | time=332ms
2026-04-13T16:49:06.5762384Z 16:49:06.574 INFO  Load project settings for component key: 'AISHealthcare_lynx'
2026-04-13T16:49:06.9877342Z 16:49:06.974 INFO  Load project settings for component key: 'AISHealthcare_lynx' (done) | time=401ms
2026-04-13T16:49:07.7921083Z 16:49:07.789 INFO  Check ALM binding of project 'AISHealthcare_lynx'
2026-04-13T16:49:08.1275669Z 16:49:08.126 INFO  Detected project binding: BOUND
2026-04-13T16:49:08.1325163Z 16:49:08.130 INFO  Check ALM binding of project 'AISHealthcare_lynx' (done) | time=338ms
2026-04-13T16:49:08.1382748Z 16:49:08.136 INFO  Load project pull requests
2026-04-13T16:49:08.4814183Z 16:49:08.475 INFO  Load project pull requests (done) | time=338ms
2026-04-13T16:49:08.4888210Z 16:49:08.486 INFO  Load branch configuration
2026-04-13T16:49:08.7582868Z 16:49:08.757 INFO  Load branch configuration (done) | time=272ms
2026-04-13T16:49:08.7718456Z 16:49:08.771 INFO  Load quality profiles
2026-04-13T16:49:09.2096212Z 16:49:09.209 INFO  Load quality profiles (done) | time=438ms
2026-04-13T16:49:09.2714077Z 16:49:09.269 INFO  Create analysis
2026-04-13T16:49:09.5119495Z 16:49:09.511 INFO  Create analysis (done) | time=240ms
2026-04-13T16:49:09.5302385Z 16:49:09.529 INFO  Load active rules
2026-04-13T16:49:10.3345426Z 16:49:10.330 INFO  Load active rules (done) | time=801ms
2026-04-13T16:49:10.5754187Z 16:49:10.574 INFO  Organization key: aishealthcare
2026-04-13T16:49:10.5773899Z 16:49:10.576 INFO  Pull request 3982 for merge into tta/test-sonar from tta/test-sonar-new
2026-04-13T16:49:10.6153762Z 16:49:10.613 INFO  Preprocessing files...
2026-04-13T16:49:13.6620459Z 16:49:13.661 INFO  8 languages detected in 5579 preprocessed files (done) | time=3048ms
2026-04-13T16:49:13.6634003Z 16:49:13.662 INFO  8563 files ignored because of inclusion/exclusion patterns
2026-04-13T16:49:13.6634864Z 16:49:13.662 INFO  3823 files ignored because of scm ignore settings
2026-04-13T16:49:14.4433878Z 16:49:14.440 INFO  Loading plugins for detected languages
2026-04-13T16:49:14.4440713Z 16:49:14.440 INFO  Load/download plugins
2026-04-13T16:49:16.5674295Z 16:49:16.565 INFO  Load/download plugins (done) | time=2124ms
2026-04-13T16:49:16.9436454Z 16:49:16.942 INFO  Executing phase 2 project builders
2026-04-13T16:49:16.9453694Z 16:49:16.942 INFO  Executing phase 2 project builders (done) | time=0ms
2026-04-13T16:49:16.9548943Z 16:49:16.953 INFO  Load project repositories
2026-04-13T16:49:18.2212082Z 16:49:18.220 INFO  Load project repositories (done) | time=1266ms
2026-04-13T16:49:18.2251731Z 16:49:18.224 INFO  SCM collecting changed files in the branch
2026-04-13T16:49:18.2741217Z 16:49:18.273 INFO  Merge base sha1: 610f8e65c541af4eeb0111775e1364cbb3ff7825
2026-04-13T16:49:18.4092134Z 16:49:18.406 INFO  SCM collecting changed files in the branch (done) | time=185ms
2026-04-13T16:49:18.4247156Z 16:49:18.423 INFO  Indexing files...
2026-04-13T16:49:18.4283667Z 16:49:18.424 INFO  Project configuration:
2026-04-13T16:49:18.4290588Z 16:49:18.425 INFO    Excluded sources: AIS.Physician.Portal/WebApp/assets/global/plugins/**, AIS.ERx/AIS.ERx.Web/Scripts/**, NugetPackages/**, lynx-pipelines/**, LynxWebApp/AIS.LynxWebApp/js/AISPlugins/**, LynxWebApp/AIS.LynxWebApp/js/lib/**, AIS.Physician.Portal/WebApp/Scripts/*, AIS.Physician.Portal/WebApp/Scripts/dataTables/**, AIS.Physician.Portal/WebApp/Scripts/jqueryMask/**, AIS.Physician.Portal/WebApp/Scripts/kendo/**, AIS.Physician.Portal/WebApp/Scripts/select2-4.0.13/**, AIS.Portal.WebApi/AISWebApi/Scripts/**, LynxWPFApp/Lynx.WPFApp/Images/**, AIS.Physician.Portal/WebApp/assets/**, AIS.Portal.WebApi/AISWebApi/fonts/**, AIS.Physician.Portal/WebApp/Content/kendo/**, LynxWebApp/AIS.LynxWebApp/img/**, AIS.ERx/AIS.ERx.Web/fonts/**, LynxWPFApp/Lynx.WPFApp/Certificates/**, LynxWebApp/AIS.LynxWebApp/css/**, LynxWPFApp/Lynx.WPFApp/Dialogs/Certificates/**, **/*.pfx, **/*.gif, **/*.ico, **/*.eot, **/*.tiff, **/*.otf, **/*.tff, **/*.woff, **/*.woff2, **/*.xcf, **/*.png, **/build-wrapper-dump.json
2026-04-13T16:49:18.7735285Z 16:49:18.771 INFO  5578 files indexed (done) | time=348ms
2026-04-13T16:49:18.7956779Z 16:49:18.794 INFO  Quality profile for cs: AIS way
2026-04-13T16:49:18.7985026Z 16:49:18.794 INFO  Quality profile for css: Sonar way
2026-04-13T16:49:18.8035804Z 16:49:18.794 INFO  Quality profile for js: Sonar way
2026-04-13T16:49:18.8074591Z 16:49:18.794 INFO  Quality profile for json: Sonar way
2026-04-13T16:49:18.8084929Z 16:49:18.794 INFO  Quality profile for ts: AIS way
2026-04-13T16:49:18.8104730Z 16:49:18.796 INFO  Quality profile for tsql: Sonar way
2026-04-13T16:49:18.8124549Z 16:49:18.798 INFO  Quality profile for web: Sonar way
2026-04-13T16:49:18.8144728Z 16:49:18.798 INFO  Quality profile for xml: Sonar way
2026-04-13T16:49:18.8158317Z 16:49:18.799 INFO  ------------- Run sensors on module lynx
2026-04-13T16:49:18.9162754Z 16:49:18.912 INFO  Load metrics repository
2026-04-13T16:49:19.0383795Z 16:49:19.035 INFO  Load metrics repository (done) | time=122ms
2026-04-13T16:49:19.0584855Z 16:49:19.057 INFO  Sensor cache enabled
2026-04-13T16:49:19.0663559Z 16:49:19.062 INFO  Load sensor cache
2026-04-13T16:49:19.3725174Z 16:49:19.371 INFO  Load sensor cache (404) | time=308ms
2026-04-13T16:49:21.4068729Z 16:49:21.405 INFO  Reflections took 105 ms to scan 1 urls, producing 25 keys and 261 values
2026-04-13T16:49:21.7368748Z 16:49:21.735 INFO  Sensor C# Project Type Information [csharpenterprise]
2026-04-13T16:49:21.7400831Z 16:49:21.739 INFO  Sensor C# Project Type Information [csharpenterprise] (done) | time=4ms
2026-04-13T16:49:21.7416563Z 16:49:21.739 INFO  Sensor C# Analysis Log [csharpenterprise]
2026-04-13T16:49:21.7535190Z 16:49:21.752 INFO  Sensor C# Analysis Log [csharpenterprise] (done) | time=11ms
2026-04-13T16:49:21.7563745Z 16:49:21.752 INFO  Sensor C# Method Declarations [csharpenterprise]
2026-04-13T16:49:21.7568170Z 16:49:21.752 INFO  Sensor C# Method Declarations [csharpenterprise] (done) | time=0ms
2026-04-13T16:49:21.7579378Z 16:49:21.752 INFO  Sensor C# Telemetry [csharpenterprise]
2026-04-13T16:49:21.7579760Z 16:49:21.753 INFO  Sensor C# Telemetry [csharpenterprise] (done) | time=0ms
2026-04-13T16:49:21.7580167Z 16:49:21.755 INFO  Sensor C# Telemetry Json [csharpenterprise]
2026-04-13T16:49:21.7583707Z 16:49:21.755 INFO  Sensor C# Telemetry Json [csharpenterprise] (done) | time=0ms
2026-04-13T16:49:21.7584602Z 16:49:21.755 INFO  Sensor C# Properties [csharpenterprise]
2026-04-13T16:49:21.7585133Z 16:49:21.755 INFO  Sensor C# Properties [csharpenterprise] (done) | time=0ms
2026-04-13T16:49:21.7585629Z 16:49:21.756 INFO  Sensor C# A3S Context Sensor [csharpenterprise]
2026-04-13T16:49:22.1734939Z 16:49:22.171 INFO  Sensor C# A3S Context Sensor [csharpenterprise] (done) | time=414ms
2026-04-13T16:49:22.1753796Z 16:49:22.172 INFO  Sensor IaC CloudFormation Sensor [iac]
2026-04-13T16:49:22.3235573Z 16:49:22.322 INFO  There are no files to be analyzed for the CloudFormation language
2026-04-13T16:49:22.3269647Z 16:49:22.322 INFO  Sensor IaC CloudFormation Sensor [iac] (done) | time=150ms
2026-04-13T16:49:22.3293711Z 16:49:22.322 INFO  Sensor IaC cfn-lint report Sensor [iac]
2026-04-13T16:49:22.3294416Z 16:49:22.323 INFO  Sensor IaC cfn-lint report Sensor [iac] (done) | time=0ms
2026-04-13T16:49:22.3313668Z 16:49:22.325 INFO  Sensor IaC hadolint report Sensor [iac]
2026-04-13T16:49:22.3333659Z 16:49:22.325 INFO  Sensor IaC hadolint report Sensor [iac] (done) | time=0ms
2026-04-13T16:49:22.3345180Z 16:49:22.325 INFO  Sensor IaC Azure Resource Manager Sensor [iac]
2026-04-13T16:49:22.3353748Z 16:49:22.326 INFO  Sensor IaC Azure Resource Manager Sensor is restricted to changed files only
2026-04-13T16:49:22.5474733Z 16:49:22.546 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Syncfusion/Syncfusion.DocIO.Base.xml at line 27459 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:22.7954843Z 16:49:22.793 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/AIS.WebAPI/fonts/3 of 9 Barcode.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:23.3073795Z 16:49:23.306 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/AIS.WebAPI/Images/Ais_Logo_for_Carrier_Label.bmp at line 2 for encoding windows-1252. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:23.4350489Z 16:49:23.434 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.Domain/Model/ERx/Transport.cs at line 3747 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:23.8537509Z 16:49:23.853 WARN  Invalid character encountered in file /home/vsts/work/1/s/cert/grpc_docs.cer at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.1183804Z 16:49:24.117 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.ERx.Core/ecl.xsd at line 292 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.1446490Z 16:49:24.144 WARN  Invalid character encountered in file /home/vsts/work/1/s/AIS.Physician.Portal/WebApp/fonts/glyphicons-halflings-regular.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.4414484Z 16:49:24.440 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.PDF/Resources/square.wmf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.7682281Z 16:49:24.767 WARN  Invalid character encountered in file /home/vsts/work/1/s/SQL/StoredProcs/Reseed.ReseedDatabase.StoredProcedure.sql at line 110 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.9112262Z 16:49:24.906 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.PDF/Clinical/VisitEmailInfo.cs at line 379 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T16:49:24.9300905Z 16:49:24.929 INFO  There are no files to be analyzed for the Azure Resource Manager language
2026-04-13T16:49:24.9323649Z 16:49:24.929 INFO  Sensor IaC Azure Resource Manager Sensor [iac] (done) | time=2603ms
2026-04-13T16:49:24.9343535Z 16:49:24.929 INFO  Sensor Java Config Sensor [iac]
2026-04-13T16:49:24.9933644Z 16:49:24.992 INFO  There are no files to be analyzed for the Java language
2026-04-13T16:49:24.9968984Z 16:49:24.992 INFO  Sensor Java Config Sensor [iac] (done) | time=62ms
2026-04-13T16:49:24.9972208Z 16:49:24.992 INFO  Sensor IaC Docker Sensor [iac]
2026-04-13T16:49:25.0008349Z 16:49:24.993 INFO  Sensor IaC Docker Sensor is restricted to changed files only
2026-04-13T16:49:25.0028693Z 16:49:24.996 INFO  There are no files to be analyzed for the Docker language
2026-04-13T16:49:25.0053521Z 16:49:24.996 INFO  Sensor IaC Docker Sensor [iac] (done) | time=3ms
2026-04-13T16:49:25.0054415Z 16:49:24.996 INFO  Sensor IaC spectral report Sensor [iac]
2026-04-13T16:49:25.0073572Z 16:49:24.999 INFO  Sensor IaC spectral report Sensor [iac] (done) | time=2ms
2026-04-13T16:49:25.0081811Z 16:49:24.999 INFO  Sensor IaC GitHub Actions Sensor [iac]
2026-04-13T16:49:25.0103710Z 16:49:24.999 INFO  There are no files to be analyzed for the GitHub Actions language
2026-04-13T16:49:25.0123618Z 16:49:25.000 INFO  Sensor IaC GitHub Actions Sensor [iac] (done) | time=0ms
2026-04-13T16:49:25.0124247Z 16:49:25.000 INFO  Sensor IaC actionlint report Sensor [iac]
2026-04-13T16:49:25.0145568Z 16:49:25.002 INFO  Sensor IaC actionlint report Sensor [iac] (done) | time=2ms
2026-04-13T16:49:25.0163643Z 16:49:25.002 INFO  Sensor IaC Azure Pipelines Sensor [iac]
2026-04-13T16:49:25.0195759Z 16:49:25.014 INFO  There are no files to be analyzed for the Azure Pipelines language
2026-04-13T16:49:25.0213634Z 16:49:25.017 INFO  Sensor IaC Azure Pipelines Sensor [iac] (done) | time=12ms
2026-04-13T16:49:25.0233621Z 16:49:25.017 INFO  Sensor IaC Shell Sensor [iac]
2026-04-13T16:49:25.0234344Z 16:49:25.018 INFO  There are no files to be analyzed for the Shell language
2026-04-13T16:49:25.0235158Z 16:49:25.018 INFO  Sensor IaC Shell Sensor [iac] (done) | time=0ms
2026-04-13T16:49:25.0235635Z 16:49:25.018 INFO  Sensor T-SQL Sensor [tsql]
2026-04-13T16:49:25.0236219Z 16:49:25.019 INFO  Sensor T-SQL Sensor is restricted to changed files only
2026-04-13T16:49:25.0399599Z 16:49:25.038 INFO  0 source files to be analyzed
2026-04-13T16:49:25.0413755Z 16:49:25.039 INFO  Sensor T-SQL Sensor [tsql] (done) | time=23ms
2026-04-13T16:49:25.0433718Z 16:49:25.039 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript]
2026-04-13T16:49:25.4015484Z 16:49:25.401 INFO  Detected os: Linux arch: amd64 alpine: false. Platform: LINUX_X64
2026-04-13T16:49:25.4024268Z 16:49:25.402 INFO  Deploy location /home/vsts/.sonar/js/node-runtime, tagetRuntime: /home/vsts/.sonar/js/node-runtime/node,  version: /home/vsts/.sonar/js/node-runtime/version.txt
2026-04-13T16:49:28.3219730Z 16:49:28.321 INFO  Using embedded Node.js runtime.
2026-04-13T16:49:28.3244431Z 16:49:28.321 INFO  Using Node.js executable: '/home/vsts/.sonar/js/node-runtime/node'.
2026-04-13T16:49:30.3024332Z 16:49:30.300 INFO  Memory configuration: OS (7938 MB), Node.js (2240 MB).
2026-04-13T16:49:30.4125970Z 16:49:30.411 INFO  WebSocket client connected on /ws
2026-04-13T16:49:30.4179207Z 16:49:30.415 INFO  Plugin version: [12.3.0.39932]
2026-04-13T16:49:34.5815212Z 16:49:34.579 INFO  Found 1 tsconfig.json file(s): [/home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json]
2026-04-13T16:50:22.0589939Z ##[error]16:50:22.032 ERROR Error: Unknown word -->
2026-04-13T16:50:22.0637683Z 16:50:22.032 ERROR Error: Unknown word -->
2026-04-13T16:50:22.0640386Z ##[error]16:50:22.036 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
16:50:22.036 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
16:50:22.037 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
16:50:22.037 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
2026-04-13T16:50:22.0744013Z 16:50:22.036 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
2026-04-13T16:50:22.0753795Z 16:50:22.036 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
2026-04-13T16:50:22.0966042Z 16:50:22.037 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
2026-04-13T16:50:22.0974081Z 16:50:22.037 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
2026-04-13T16:50:22.1176343Z ##[error]16:50:22.040 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
16:50:22.040 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
16:50:22.040 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
16:50:22.040 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
16:50:22.040 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
16:50:22.040 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-13T16:50:22.1179650Z 16:50:22.040 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
2026-04-13T16:50:22.1359682Z 16:50:22.040 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
2026-04-13T16:50:22.1360558Z 16:50:22.040 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
2026-04-13T16:50:22.1361277Z 16:50:22.040 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
2026-04-13T16:50:22.1361911Z 16:50:22.040 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
2026-04-13T16:50:22.1362580Z 16:50:22.040 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-13T16:50:22.1384009Z 16:50:22.042 WARN  Failed to parse file [LynxWebApp/AIS.LynxWebApp/App_Offline.ONLINE.htm] at line 59: Unknown word -->
2026-04-13T16:50:23.6084201Z 16:50:23.596 INFO  JasminAstConsumer done
2026-04-13T16:50:23.6153687Z 16:50:23.596 INFO  Hit the cache for 0 out of 895
2026-04-13T16:50:23.6154636Z 16:50:23.597 INFO  Miss the cache for 895 out of 895: FILE_CHANGED [895/895]
2026-04-13T16:50:23.6233784Z 16:50:23.597 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript] (done) | time=58554ms
2026-04-13T16:50:23.6273690Z 16:50:23.597 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend]
2026-04-13T16:50:23.6303849Z 16:50:23.611 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend] (done) | time=13ms
2026-04-13T16:50:23.6357490Z 16:50:23.611 INFO  Sensor HTML [web]
2026-04-13T16:50:23.6396918Z 16:50:23.611 INFO  Sensor HTML is restricted to changed files only
2026-04-13T16:50:23.6433477Z 16:50:23.621 INFO  Sensor HTML [web] (done) | time=10ms
2026-04-13T16:50:23.6487062Z 16:50:23.621 INFO  979 source files to be analyzed
2026-04-13T16:50:23.6523805Z 16:50:23.621 INFO  Creating TypeScript(5.9.3) program with configuration file /home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-13T16:50:23.6543554Z 16:50:23.621 INFO  Analyzing 444 file(s) from tsconfig /home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json (506 total files in program)
2026-04-13T16:50:23.6588411Z 16:50:23.621 INFO  Sensor XML Sensor [xml]
2026-04-13T16:50:23.6633616Z 16:50:23.621 INFO  Sensor XML Sensor is restricted to changed files only
2026-04-13T16:50:23.6634266Z 16:50:23.623 INFO  Sensor XML Sensor [xml] (done) | time=2ms
2026-04-13T16:50:23.6673744Z 16:50:23.630 INFO  Sensor JasminFileCollectorSensor [jasmin]
2026-04-13T16:50:23.6713810Z 16:50:23.639 INFO  Sensor JasminFileCollectorSensor [jasmin] (done) | time=8ms
2026-04-13T16:50:23.6733572Z 16:50:23.643 INFO  Sensor IaC JSON Sensor [iac]
2026-04-13T16:50:23.6757224Z 16:50:23.643 INFO  Sensor for language "JSON" is enabled by a feature flag. You can disable it by setting "sonar.json.activate" to false.
2026-04-13T16:50:23.7071964Z 16:50:23.706 INFO  Analyzing 353 file(s) using merged compiler options [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-13T16:50:23.7344008Z 16:50:23.730 INFO  15 source files to be analyzed
2026-04-13T16:50:23.7674336Z 16:50:23.763 INFO  979/979 source files have been analyzed
2026-04-13T16:50:24.0323982Z 16:50:24.030 INFO  15/15 source files have been analyzed
2026-04-13T16:50:24.0373889Z 16:50:24.036 INFO  Sensor IaC JSON Sensor [iac] (done) | time=394ms
2026-04-13T16:50:24.0453640Z 16:50:24.036 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise]
2026-04-13T16:50:24.0513811Z 16:50:24.036 INFO  Sensor EnterpriseTextAndSecretsSensor is restricted to changed files only
2026-04-13T16:50:24.0706693Z 16:50:24.069 INFO  Available processors: 2
2026-04-13T16:50:24.0783781Z 16:50:24.069 INFO  Using 2 threads for analysis.
2026-04-13T16:50:24.7899345Z 16:50:24.789 INFO  The property "sonar.tests" is not set. To improve the analysis accuracy, we categorize a file as a test file if any of the following is true:
2026-04-13T16:50:24.7923818Z   * The filename starts with "test"
2026-04-13T16:50:24.7943744Z   * The filename contains "test." or "tests."
2026-04-13T16:50:24.7944447Z   * Any directory in the file path is named: "doc", "docs", "test", "tests", "mock" or "mocks"
2026-04-13T16:50:24.7950879Z   * Any directory in the file path has a name ending in "test" or "tests"
2026-04-13T16:50:24.7968869Z 
2026-04-13T16:50:24.9507915Z 16:50:24.948 INFO  Start fetching files for the text and secrets analysis
2026-04-13T16:50:24.9588454Z 16:50:24.958 INFO  Using Git CLI to retrieve dirty files
2026-04-13T16:50:25.2243892Z 16:50:25.221 INFO  Retrieving language associated files and files included via "sonar.text.inclusions" that are tracked by git
2026-04-13T16:50:25.2251380Z 16:50:25.223 INFO  Starting the text and secrets analysis
2026-04-13T16:50:25.2271418Z 16:50:25.225 INFO  2 source files to be analyzed for the text and secrets analysis
2026-04-13T16:50:25.6153808Z 16:50:25.614 INFO  2/2 source files have been analyzed for the text and secrets analysis
2026-04-13T16:50:25.6203841Z 16:50:25.617 INFO  Start fetching files for the binary file analysis
2026-04-13T16:50:25.6223804Z 16:50:25.617 INFO  There are no files to be analyzed for the binary file analysis
2026-04-13T16:50:25.6234019Z 16:50:25.617 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise] (done) | time=1583ms
2026-04-13T16:50:25.6258029Z 16:50:25.619 INFO  Sensor CSharpSecuritySensor [security]
2026-04-13T16:50:25.6273535Z 16:50:25.626 INFO  27 taint analysis rules enabled.
2026-04-13T16:50:25.6391749Z 16:50:25.637 INFO  No UCFGs have been included for analysis.
2026-04-13T16:50:25.6433840Z 16:50:25.637 INFO  csharp security sensor: Begin: 2026-04-13T16:50:25.621138138Z, End: 2026-04-13T16:50:25.630358427Z, Duration: 00:00:00.009
2026-04-13T16:50:25.6443715Z   Load type hierarchy and UCFGs: Begin: 2026-04-13T16:50:25.624992492Z, End: 2026-04-13T16:50:25.628014943Z, Duration: 00:00:00.003
2026-04-13T16:50:25.6483672Z     Load type hierarchy: Begin: 2026-04-13T16:50:25.625005837Z, End: 2026-04-13T16:50:25.627000089Z, Duration: 00:00:00.001
2026-04-13T16:50:25.6529839Z     Load UCFGs: Begin: 2026-04-13T16:50:25.627510972Z, End: 2026-04-13T16:50:25.627953428Z, Duration: 00:00:00.000
2026-04-13T16:50:25.6563753Z 16:50:25.637 INFO  csharp security sensor peak memory: 252 MB
2026-04-13T16:50:25.6583673Z 16:50:25.637 INFO  Sensor CSharpSecuritySensor [security] (done) | time=13ms
2026-04-13T16:50:25.6632839Z 16:50:25.641 INFO  ------------- Run sensors on project
2026-04-13T16:50:25.8061445Z 16:50:25.805 INFO  Sensor C# Telemetry processor [csharpenterprise]
2026-04-13T16:50:25.8088858Z 16:50:25.808 INFO  Sensor C# Telemetry processor [csharpenterprise] (done) | time=2ms
2026-04-13T16:50:25.8117061Z 16:50:25.808 INFO  Sensor C# Telemetry Json processor [csharpenterprise]
2026-04-13T16:50:25.8148952Z 16:50:25.810 INFO  Sensor C# Telemetry Json processor [csharpenterprise] (done) | time=1ms
2026-04-13T16:50:25.8163734Z 16:50:25.810 INFO  Sensor C# [csharpenterprise]
2026-04-13T16:50:25.8164543Z 16:50:25.810 WARN  Your project contains C# files which cannot be analyzed with the scanner you are using. To analyze C# or VB.NET, you must use the SonarScanner for .NET 5.x or higher, see https://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html
2026-04-13T16:50:25.8183633Z 16:50:25.810 INFO  Sensor C# [csharpenterprise] (done) | time=0ms
2026-04-13T16:50:25.8203537Z 16:50:25.811 INFO  Sensor Analysis Warnings import [csharpenterprise]
2026-04-13T16:50:25.8223646Z 16:50:25.811 INFO  Sensor Analysis Warnings import [csharpenterprise] (done) | time=0ms
2026-04-13T16:50:25.8233732Z 16:50:25.811 INFO  Sensor C# File Caching Sensor [csharpenterprise]
2026-04-13T16:50:25.8243564Z 16:50:25.811 INFO  Sensor C# File Caching Sensor [csharpenterprise] (done) | time=0ms
2026-04-13T16:50:25.8244131Z 16:50:25.811 INFO  Sensor C# A3S Context processor [csharpenterprise]
2026-04-13T16:50:25.8244608Z 16:50:25.812 INFO  A3S is disabled
2026-04-13T16:50:25.8245053Z 16:50:25.814 INFO  Sensor C# A3S Context processor [csharpenterprise] (done) | time=0ms
2026-04-13T16:50:25.8263854Z 16:50:25.814 INFO  Sensor JsSecuritySensorV2 [jasmin]
2026-04-13T16:50:25.8625538Z 16:50:25.862 INFO  797 file(s) will be analysed by SonarJasmin.
2026-04-13T16:50:35.1168581Z 16:50:35.116 INFO  Analysis progress:   6% (50/797 files)
2026-04-13T16:50:43.1732870Z 16:50:43.172 INFO  Analysis progress:  12% (100/797 files)
2026-04-13T16:50:46.0258415Z 16:50:46.025 INFO  Analysis progress:  18% (150/797 files)
2026-04-13T16:50:50.2881682Z 16:50:50.287 INFO  Analysis progress:  25% (200/797 files)
2026-04-13T16:50:53.2636951Z 16:50:53.262 INFO  Analysis progress:  31% (250/797 files)
2026-04-13T16:50:53.6214185Z 16:50:53.620 INFO  Analysis progress:  37% (300/797 files)
2026-04-13T16:50:54.2405842Z 16:50:54.239 INFO  Analysis progress:  43% (350/797 files)
2026-04-13T16:50:54.8384456Z 16:50:54.837 INFO  Analysis progress:  50% (400/797 files)
2026-04-13T16:50:55.0103322Z 16:50:55.009 INFO  Analysis progress:  56% (450/797 files)
2026-04-13T16:50:55.1344172Z 16:50:55.130 INFO  Analysis progress:  62% (500/797 files)
2026-04-13T16:50:55.3094184Z 16:50:55.307 INFO  Analysis progress:  69% (550/797 files)
2026-04-13T16:50:56.2073792Z 16:50:56.205 INFO  Analysis progress:  75% (600/797 files)
2026-04-13T16:50:56.4256290Z 16:50:56.423 INFO  Analysis progress:  81% (650/797 files)
2026-04-13T16:50:56.5801840Z 16:50:56.579 INFO  Analysis progress:  87% (700/797 files)
2026-04-13T16:50:56.7016066Z 16:50:56.700 INFO  Analysis progress:  94% (750/797 files)
2026-04-13T16:50:57.0733807Z 16:50:57.072 INFO  Sensor JsSecuritySensorV2 [jasmin] (done) | time=31261ms
2026-04-13T16:50:57.0757450Z 16:50:57.073 INFO  Sensor CveReachabilitySensor [cvereachability]
2026-04-13T16:50:57.0783623Z 16:50:57.073 INFO  Skipping CveReachabilitySensor
2026-04-13T16:50:57.0795659Z 16:50:57.073 INFO  Sensor CveReachabilitySensor [cvereachability] (done) | time=0ms
2026-04-13T16:50:57.0803661Z 16:50:57.075 INFO  Sensor JsArchitectureSensor [architecture]
2026-04-13T16:50:57.1063621Z 16:50:57.105 INFO  Found 1 potential Udg file location(s) for "js" in "/home/vsts/work/1/s/.scannerwork"
2026-04-13T16:50:57.1067222Z 16:50:57.106 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/js
2026-04-13T16:50:57.1213756Z 16:50:57.119 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T16:50:57.1248091Z 16:50:57.124 INFO  * Protobuf reading starting | memory total=960 | free=269 | used=690 (MB)
2026-04-13T16:50:57.1253693Z 16:50:57.124 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/js"
2026-04-13T16:50:57.3018028Z 16:50:57.301 INFO  * Files successfully loaded: "353" out of "353"
2026-04-13T16:50:57.3042714Z 16:50:57.302 INFO  * Purging externals (components not scanned) from graphs
2026-04-13T16:50:57.3063687Z 16:50:57.303 INFO  * Purging excluded nodes from graphs
2026-04-13T16:50:57.3347301Z 16:50:57.334 INFO  * Protobuf reading complete | memory total=960 | free=249 | used=710 (MB)
2026-04-13T16:50:57.4184543Z 16:50:57.417 INFO  * Build architecture.graph.js.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=960 | free=239 | used=720 (MB)
2026-04-13T16:50:57.4683682Z 16:50:57.466 INFO  No directives configured
2026-04-13T16:50:57.4708484Z 16:50:57.470 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T16:50:57.8408003Z 16:50:57.838 INFO  Sensor JsArchitectureSensor [architecture] (done) | time=763ms
2026-04-13T16:50:57.8408999Z 16:50:57.840 INFO  Sensor TsArchitectureSensor [architecture]
2026-04-13T16:50:57.8683180Z 16:50:57.867 INFO  Found 1 potential Udg file location(s) for "ts" in "/home/vsts/work/1/s/.scannerwork"
2026-04-13T16:50:57.8685628Z 16:50:57.867 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/ts
2026-04-13T16:50:57.8702767Z 16:50:57.867 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T16:50:57.8723852Z 16:50:57.867 INFO  * Protobuf reading starting | memory total=960 | free=185 | used=774 (MB)
2026-04-13T16:50:57.8733595Z 16:50:57.868 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/ts"
2026-04-13T16:50:57.9394845Z 16:50:57.938 INFO  * Files successfully loaded: "444" out of "444"
2026-04-13T16:50:57.9403585Z 16:50:57.938 INFO  * Purging externals (components not scanned) from graphs
2026-04-13T16:50:57.9413612Z 16:50:57.939 INFO  * Purging excluded nodes from graphs
2026-04-13T16:50:57.9758591Z 16:50:57.975 INFO  * Protobuf reading complete | memory total=960 | free=173 | used=786 (MB)
2026-04-13T16:50:57.9936119Z 16:50:57.993 INFO  * Build architecture.graph.ts.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=960 | free=158 | used=801 (MB)
2026-04-13T16:50:58.0099329Z 16:50:58.009 INFO  No directives configured
2026-04-13T16:50:58.0123724Z 16:50:58.009 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T16:50:58.2293947Z 16:50:58.226 INFO  Sensor TsArchitectureSensor [architecture] (done) | time=384ms
2026-04-13T16:50:58.2313497Z 16:50:58.226 INFO  Sensor CSharpArchitectureSensor [architecture]
2026-04-13T16:50:59.2119142Z 16:50:59.208 INFO  Found 0 potential Udg file location(s) for "cs" in "/home/vsts/work/1/s"
2026-04-13T16:50:59.2167132Z 16:50:59.208 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T16:50:59.2203797Z 16:50:59.208 INFO  * Protobuf reading starting | memory total=960 | free=570 | used=389 (MB)
2026-04-13T16:50:59.2230565Z 16:50:59.208 INFO  * Protobuf reading complete | memory total=960 | free=570 | used=389 (MB)
2026-04-13T16:50:59.2293777Z 16:50:59.215 INFO  * Build architecture.graph.cs.namespace_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=960 | free=570 | used=389 (MB)
2026-04-13T16:50:59.2333630Z 16:50:59.215 INFO  No directives configured
2026-04-13T16:50:59.2373706Z 16:50:59.215 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T16:50:59.2413648Z 16:50:59.215 INFO  Sensor CSharpArchitectureSensor [architecture] (done) | time=990ms
2026-04-13T16:50:59.2473527Z 16:50:59.215 INFO  Sensor Zero Coverage Sensor
2026-04-13T16:50:59.4689018Z 16:50:59.468 INFO  Sensor Zero Coverage Sensor (done) | time=251ms
2026-04-13T16:50:59.4715417Z 16:50:59.468 INFO  Sensor Architecture Telemetry [architecture]
2026-04-13T16:50:59.4716621Z 16:50:59.468 INFO  Sensor Architecture Telemetry [architecture] (done) | time=0ms
2026-04-13T16:50:59.9044200Z 16:50:59.901 INFO  ------------- Gather SCA dependencies on project
2026-04-13T16:51:00.3026185Z 16:51:00.301 INFO  Dependency analysis skipped
2026-04-13T16:51:00.5174080Z 16:51:00.512 INFO  CPD Executor 191 files had no CPD blocks
2026-04-13T16:51:00.5213576Z 16:51:00.513 INFO  CPD Executor Calculating CPD for 692 files
2026-04-13T16:51:00.9054019Z 16:51:00.904 INFO  CPD Executor CPD calculation finished (done) | time=391ms
2026-04-13T16:51:00.9193753Z 16:51:00.918 INFO  SCM Publisher SCM provider for this project is: git
2026-04-13T16:51:00.9233638Z 16:51:00.920 INFO  SCM Publisher 2 source files to be analyzed
2026-04-13T16:51:01.6518126Z 16:51:01.647 INFO  SCM Publisher 2/2 source files have been analyzed (done) | time=727ms
2026-04-13T16:51:01.6594793Z 16:51:01.658 INFO  SCM revision ID '227cad025d19570d2e8bd9166d96bff7858321e9'
2026-04-13T16:51:02.1450611Z 16:51:02.142 INFO  SCM writing changed lines
2026-04-13T16:51:02.1583832Z 16:51:02.156 INFO  Merge base sha1: 610f8e65c541af4eeb0111775e1364cbb3ff7825
2026-04-13T16:51:02.2647371Z 16:51:02.263 INFO  SCM writing changed lines (done) | time=119ms
2026-04-13T16:51:04.1733986Z 16:51:04.171 INFO  Analysis report generated in 2441ms, dir size=2 MB
2026-04-13T16:51:05.3845009Z 16:51:05.382 INFO  Analysis report compressed in 1210ms, zip size=2 MB
2026-04-13T16:51:08.5505797Z 16:51:08.550 INFO  Analysis report uploaded in 3167ms
2026-04-13T16:51:08.5536920Z 16:51:08.552 INFO  ANALYSIS SUCCESSFUL, you can find the results at: https://sonarcloud.io/dashboard?id=AISHealthcare_lynx&pullRequest=3982
2026-04-13T16:51:08.5540827Z 16:51:08.552 INFO  Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
2026-04-13T16:51:08.5541575Z 16:51:08.552 INFO  More about the report processing at https://sonarcloud.io/api/ce/task?id=AZ2HwQogtj_jZkxrwM1j
2026-04-13T16:51:08.5542187Z 16:51:08.552 INFO  ------------- Upload SCA dependency files
2026-04-13T16:51:11.3040969Z 16:51:11.303 INFO  Successfully sent architecture data
2026-04-13T16:51:11.7905072Z 16:51:11.788 INFO  Analysis total time: 2:05.971 s
2026-04-13T16:51:11.7908050Z 16:51:11.789 INFO  SonarScanner Engine completed successfully
2026-04-13T16:51:12.2159513Z 16:51:12.215 INFO  EXECUTION SUCCESS
2026-04-13T16:51:12.2169556Z 16:51:12.216 INFO  Total time: 2:16.550s
2026-04-13T16:51:12.5382588Z 
2026-04-13T16:51:12.5457073Z ##[section]Finishing: SonarCloudAnalyze

This is when I PR to the main branch, it analyzed changed files:

2026-04-13T15:49:05.4139587Z ##[section]Starting: SonarCloudAnalyze
2026-04-13T15:49:05.4144761Z ==============================================================================
2026-04-13T15:49:05.4144871Z Task         : Run Code Analysis
2026-04-13T15:49:05.4144935Z Description  : Run scanner and upload the results to SonarQube Cloud.
2026-04-13T15:49:05.4145024Z Version      : 3.4.3
2026-04-13T15:49:05.4145085Z Author       : sonarsource
2026-04-13T15:49:05.4145152Z Help         : 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/)
2026-04-13T15:49:05.4145323Z ==============================================================================
2026-04-13T15:49:05.5778645Z [command]/home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/bin/sonar-scanner
2026-04-13T15:49:06.1219114Z 15:49:06.113 INFO  Scanner configuration file: /home/vsts/work/_tasks/SonarCloudAnalyze_ce096e50-6155-4de8-8800-4221aaeed4a1/3.4.3/sonar-scanner/conf/sonar-scanner.properties
2026-04-13T15:49:06.1240340Z 15:49:06.120 INFO  Project root configuration file: NONE
2026-04-13T15:49:06.1429991Z 15:49:06.142 INFO  SonarScanner CLI 7.2.0.5079
2026-04-13T15:49:06.1491276Z 15:49:06.146 INFO  Linux 6.17.0-1010-azure amd64
2026-04-13T15:49:07.2525812Z 15:49:07.251 INFO  Communicating with SonarQube Cloud
2026-04-13T15:49:07.2554679Z 15:49:07.253 INFO  JRE provisioning: os[linux], arch[x86_64]
2026-04-13T15:49:11.8014886Z 15:49:11.799 INFO  Starting SonarScanner Engine...
2026-04-13T15:49:11.8033394Z 15:49:11.801 INFO  Java 21.0.9 Eclipse Adoptium (64-bit)
2026-04-13T15:49:13.4123261Z 15:49:13.409 INFO  Load global settings
2026-04-13T15:49:14.2202701Z 15:49:14.219 INFO  Load global settings (done) | time=809ms
2026-04-13T15:49:14.3355821Z 15:49:14.334 INFO  Server id: 1BD809FA-AWHW8ct9-T_TB3XqouNu
2026-04-13T15:49:14.6458488Z 15:49:14.644 INFO  Loading required plugins
2026-04-13T15:49:14.6463173Z 15:49:14.644 INFO  Load plugins index
2026-04-13T15:49:14.7770181Z 15:49:14.772 INFO  Load plugins index (done) | time=127ms
2026-04-13T15:49:14.7787475Z 15:49:14.773 INFO  Load/download plugins
2026-04-13T15:49:15.8886430Z 15:49:15.886 INFO  Load/download plugins (done) | time=1112ms
2026-04-13T15:49:16.1233230Z 15:49:16.122 INFO  Loaded core extensions: sca, architecture, a3s
2026-04-13T15:49:16.5433406Z 15:49:16.540 INFO  Process project properties
2026-04-13T15:49:16.5683458Z 15:49:16.564 INFO  Project key: AISHealthcare_lynx
2026-04-13T15:49:16.5713059Z 15:49:16.565 INFO  Base dir: /home/vsts/work/1/s
2026-04-13T15:49:16.5752892Z 15:49:16.565 INFO  Working dir: /home/vsts/work/1/s/.scannerwork
2026-04-13T15:49:16.5843114Z 15:49:16.581 INFO  Found an active CI vendor: 'Azure DevOps'
2026-04-13T15:49:16.5887086Z 15:49:16.588 INFO  Load project branches
2026-04-13T15:49:17.0125315Z 15:49:17.007 INFO  Load project branches (done) | time=418ms
2026-04-13T15:49:17.0135677Z 15:49:17.012 INFO  Load project settings for component key: 'AISHealthcare_lynx'
2026-04-13T15:49:17.3313577Z 15:49:17.325 INFO  Load project settings for component key: 'AISHealthcare_lynx' (done) | time=313ms
2026-04-13T15:49:17.9900015Z 15:49:17.989 INFO  Check ALM binding of project 'AISHealthcare_lynx'
2026-04-13T15:49:18.2818964Z 15:49:18.279 INFO  Detected project binding: BOUND
2026-04-13T15:49:18.2854816Z 15:49:18.285 INFO  Check ALM binding of project 'AISHealthcare_lynx' (done) | time=292ms
2026-04-13T15:49:18.2899088Z 15:49:18.289 INFO  Load project pull requests
2026-04-13T15:49:18.7922875Z 15:49:18.775 INFO  Load project pull requests (done) | time=486ms
2026-04-13T15:49:18.7923453Z 15:49:18.788 INFO  Load branch configuration
2026-04-13T15:49:19.2300468Z 15:49:19.221 INFO  Load branch configuration (done) | time=434ms
2026-04-13T15:49:19.2375803Z 15:49:19.235 INFO  Load quality profiles
2026-04-13T15:49:19.6616401Z 15:49:19.641 INFO  Load quality profiles (done) | time=405ms
2026-04-13T15:49:19.7096202Z 15:49:19.694 INFO  Create analysis
2026-04-13T15:49:19.8960606Z 15:49:19.895 INFO  Create analysis (done) | time=200ms
2026-04-13T15:49:19.9160426Z 15:49:19.913 INFO  Load active rules
2026-04-13T15:49:20.7356082Z 15:49:20.732 INFO  Load active rules (done) | time=818ms
2026-04-13T15:49:21.0248832Z 15:49:20.988 INFO  Organization key: aishealthcare
2026-04-13T15:49:21.0249257Z 15:49:20.992 INFO  Pull request 3980 for merge into Dev from tta/test-sonar-new
2026-04-13T15:49:21.0249651Z 15:49:21.013 INFO  Preprocessing files...
2026-04-13T15:49:24.4632169Z 15:49:24.462 INFO  8 languages detected in 5581 preprocessed files (done) | time=3449ms
2026-04-13T15:49:24.4639510Z 15:49:24.463 INFO  8563 files ignored because of inclusion/exclusion patterns
2026-04-13T15:49:24.4640413Z 15:49:24.463 INFO  3823 files ignored because of scm ignore settings
2026-04-13T15:49:25.3201478Z 15:49:25.317 INFO  Loading plugins for detected languages
2026-04-13T15:49:25.3209299Z 15:49:25.318 INFO  Load/download plugins
2026-04-13T15:49:27.4104837Z 15:49:27.406 INFO  Load/download plugins (done) | time=2089ms
2026-04-13T15:49:27.7397440Z 15:49:27.737 INFO  Executing phase 2 project builders
2026-04-13T15:49:27.7412864Z 15:49:27.738 INFO  Executing phase 2 project builders (done) | time=0ms
2026-04-13T15:49:27.7473040Z 15:49:27.746 INFO  Load project repositories
2026-04-13T15:49:28.8972056Z 15:49:28.896 INFO  Load project repositories (done) | time=1149ms
2026-04-13T15:49:28.9039109Z 15:49:28.900 INFO  SCM collecting changed files in the branch
2026-04-13T15:49:28.9558673Z 15:49:28.955 INFO  Merge base sha1: cbf6947d35380e4d420810a801005c5809b050c8
2026-04-13T15:49:29.0909589Z 15:49:29.089 INFO  SCM collecting changed files in the branch (done) | time=185ms
2026-04-13T15:49:29.1107460Z 15:49:29.107 INFO  Indexing files...
2026-04-13T15:49:29.1146937Z 15:49:29.108 INFO  Project configuration:
2026-04-13T15:49:29.1205245Z 15:49:29.113 INFO    Excluded sources: AIS.Physician.Portal/WebApp/assets/global/plugins/**, AIS.ERx/AIS.ERx.Web/Scripts/**, NugetPackages/**, lynx-pipelines/**, LynxWebApp/AIS.LynxWebApp/js/AISPlugins/**, LynxWebApp/AIS.LynxWebApp/js/lib/**, AIS.Physician.Portal/WebApp/Scripts/*, AIS.Physician.Portal/WebApp/Scripts/dataTables/**, AIS.Physician.Portal/WebApp/Scripts/jqueryMask/**, AIS.Physician.Portal/WebApp/Scripts/kendo/**, AIS.Physician.Portal/WebApp/Scripts/select2-4.0.13/**, AIS.Portal.WebApi/AISWebApi/Scripts/**, LynxWPFApp/Lynx.WPFApp/Images/**, AIS.Physician.Portal/WebApp/assets/**, AIS.Portal.WebApi/AISWebApi/fonts/**, AIS.Physician.Portal/WebApp/Content/kendo/**, LynxWebApp/AIS.LynxWebApp/img/**, AIS.ERx/AIS.ERx.Web/fonts/**, LynxWPFApp/Lynx.WPFApp/Certificates/**, LynxWebApp/AIS.LynxWebApp/css/**, LynxWPFApp/Lynx.WPFApp/Dialogs/Certificates/**, **/*.pfx, **/*.gif, **/*.ico, **/*.eot, **/*.tiff, **/*.otf, **/*.tff, **/*.woff, **/*.woff2, **/*.xcf, **/*.png, **/build-wrapper-dump.json
2026-04-13T15:49:29.5433270Z 15:49:29.540 INFO  5580 files indexed (done) | time=432ms
2026-04-13T15:49:29.5651643Z 15:49:29.562 INFO  Quality profile for cs: AIS way
2026-04-13T15:49:29.5692756Z 15:49:29.563 INFO  Quality profile for css: Sonar way
2026-04-13T15:49:29.5723009Z 15:49:29.563 INFO  Quality profile for js: Sonar way
2026-04-13T15:49:29.5725734Z 15:49:29.563 INFO  Quality profile for json: Sonar way
2026-04-13T15:49:29.5754091Z 15:49:29.563 INFO  Quality profile for ts: AIS way
2026-04-13T15:49:29.5762771Z 15:49:29.563 INFO  Quality profile for tsql: Sonar way
2026-04-13T15:49:29.5782744Z 15:49:29.564 INFO  Quality profile for web: Sonar way
2026-04-13T15:49:29.5812824Z 15:49:29.568 INFO  Quality profile for xml: Sonar way
2026-04-13T15:49:29.5813435Z 15:49:29.568 INFO  ------------- Run sensors on module lynx
2026-04-13T15:49:29.7037847Z 15:49:29.701 INFO  Load metrics repository
2026-04-13T15:49:29.8520833Z 15:49:29.850 INFO  Load metrics repository (done) | time=148ms
2026-04-13T15:49:29.8728346Z 15:49:29.871 INFO  Sensor cache enabled
2026-04-13T15:49:29.8826210Z 15:49:29.881 INFO  Load sensor cache
2026-04-13T15:49:30.3263339Z 15:49:30.321 INFO  Load sensor cache (404) | time=443ms
2026-04-13T15:49:32.2226257Z 15:49:32.221 INFO  Reflections took 73 ms to scan 1 urls, producing 25 keys and 261 values
2026-04-13T15:49:32.5388982Z 15:49:32.537 INFO  Sensor C# Project Type Information [csharpenterprise]
2026-04-13T15:49:32.5423031Z 15:49:32.541 INFO  Sensor C# Project Type Information [csharpenterprise] (done) | time=4ms
2026-04-13T15:49:32.5442969Z 15:49:32.543 INFO  Sensor C# Analysis Log [csharpenterprise]
2026-04-13T15:49:32.5583125Z 15:49:32.554 INFO  Sensor C# Analysis Log [csharpenterprise] (done) | time=11ms
2026-04-13T15:49:32.5603003Z 15:49:32.556 INFO  Sensor C# Method Declarations [csharpenterprise]
2026-04-13T15:49:32.5627373Z 15:49:32.556 INFO  Sensor C# Method Declarations [csharpenterprise] (done) | time=0ms
2026-04-13T15:49:32.5628220Z 15:49:32.556 INFO  Sensor C# Telemetry [csharpenterprise]
2026-04-13T15:49:32.5628772Z 15:49:32.557 INFO  Sensor C# Telemetry [csharpenterprise] (done) | time=0ms
2026-04-13T15:49:32.5629713Z 15:49:32.560 INFO  Sensor C# Telemetry Json [csharpenterprise]
2026-04-13T15:49:32.5630265Z 15:49:32.560 INFO  Sensor C# Telemetry Json [csharpenterprise] (done) | time=0ms
2026-04-13T15:49:32.5630795Z 15:49:32.560 INFO  Sensor C# Properties [csharpenterprise]
2026-04-13T15:49:32.5631335Z 15:49:32.561 INFO  Sensor C# Properties [csharpenterprise] (done) | time=0ms
2026-04-13T15:49:32.5631868Z 15:49:32.561 INFO  Sensor C# A3S Context Sensor [csharpenterprise]
2026-04-13T15:49:33.0248737Z 15:49:33.023 INFO  Sensor C# A3S Context Sensor [csharpenterprise] (done) | time=462ms
2026-04-13T15:49:33.0257762Z 15:49:33.024 INFO  Sensor IaC CloudFormation Sensor [iac]
2026-04-13T15:49:33.2186937Z 15:49:33.217 INFO  There are no files to be analyzed for the CloudFormation language
2026-04-13T15:49:33.2212984Z 15:49:33.218 INFO  Sensor IaC CloudFormation Sensor [iac] (done) | time=193ms
2026-04-13T15:49:33.2232849Z 15:49:33.218 INFO  Sensor IaC cfn-lint report Sensor [iac]
2026-04-13T15:49:33.2233253Z 15:49:33.218 INFO  Sensor IaC cfn-lint report Sensor [iac] (done) | time=0ms
2026-04-13T15:49:33.2233642Z 15:49:33.220 INFO  Sensor IaC hadolint report Sensor [iac]
2026-04-13T15:49:33.2252906Z 15:49:33.220 INFO  Sensor IaC hadolint report Sensor [iac] (done) | time=0ms
2026-04-13T15:49:33.2272857Z 15:49:33.220 INFO  Sensor IaC Azure Resource Manager Sensor [iac]
2026-04-13T15:49:33.2273580Z 15:49:33.220 INFO  Sensor IaC Azure Resource Manager Sensor is restricted to changed files only
2026-04-13T15:49:33.4253482Z 15:49:33.422 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/Syncfusion/Syncfusion.DocIO.Base.xml at line 27459 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:33.6617915Z 15:49:33.661 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/AIS.WebAPI/fonts/3 of 9 Barcode.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:34.1664699Z 15:49:34.165 WARN  Invalid character encountered in file /home/vsts/work/1/s/WebAPI/AIS.WebAPI/Images/Ais_Logo_for_Carrier_Label.bmp at line 2 for encoding windows-1252. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:34.2989205Z 15:49:34.298 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.Domain/Model/ERx/Transport.cs at line 3747 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:34.6943754Z 15:49:34.693 WARN  Invalid character encountered in file /home/vsts/work/1/s/cert/grpc_docs.cer at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:34.9643861Z 15:49:34.962 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.ERx.Core/ecl.xsd at line 292 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:34.9973184Z 15:49:34.989 WARN  Invalid character encountered in file /home/vsts/work/1/s/AIS.Physician.Portal/WebApp/fonts/glyphicons-halflings-regular.ttf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:35.3719676Z 15:49:35.371 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.PDF/Resources/square.wmf at line 1 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:35.7141588Z 15:49:35.713 WARN  Invalid character encountered in file /home/vsts/work/1/s/SQL/StoredProcs/Reseed.ReseedDatabase.StoredProcedure.sql at line 110 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:35.8623605Z 15:49:35.860 WARN  Invalid character encountered in file /home/vsts/work/1/s/Shared Libraries/AIS.PDF/Clinical/VisitEmailInfo.cs at line 379 for encoding UTF-8. Please fix file content or configure the encoding to be used using property 'sonar.sourceEncoding'.
2026-04-13T15:49:35.8811814Z 15:49:35.880 INFO  There are no files to be analyzed for the Azure Resource Manager language
2026-04-13T15:49:35.8838485Z 15:49:35.883 INFO  Sensor IaC Azure Resource Manager Sensor [iac] (done) | time=2662ms
2026-04-13T15:49:35.8862925Z 15:49:35.883 INFO  Sensor Java Config Sensor [iac]
2026-04-13T15:49:35.9565189Z 15:49:35.954 INFO  There are no files to be analyzed for the Java language
2026-04-13T15:49:35.9575524Z 15:49:35.956 INFO  Sensor Java Config Sensor [iac] (done) | time=72ms
2026-04-13T15:49:35.9598082Z 15:49:35.956 INFO  Sensor IaC Docker Sensor [iac]
2026-04-13T15:49:35.9621466Z 15:49:35.956 INFO  Sensor IaC Docker Sensor is restricted to changed files only
2026-04-13T15:49:35.9682563Z 15:49:35.957 INFO  There are no files to be analyzed for the Docker language
2026-04-13T15:49:35.9700444Z 15:49:35.957 INFO  Sensor IaC Docker Sensor [iac] (done) | time=2ms
2026-04-13T15:49:35.9710209Z 15:49:35.957 INFO  Sensor IaC spectral report Sensor [iac]
2026-04-13T15:49:35.9710899Z 15:49:35.959 INFO  Sensor IaC spectral report Sensor [iac] (done) | time=2ms
2026-04-13T15:49:35.9711509Z 15:49:35.965 INFO  Sensor IaC GitHub Actions Sensor [iac]
2026-04-13T15:49:35.9712097Z 15:49:35.965 INFO  There are no files to be analyzed for the GitHub Actions language
2026-04-13T15:49:35.9713044Z 15:49:35.965 INFO  Sensor IaC GitHub Actions Sensor [iac] (done) | time=0ms
2026-04-13T15:49:35.9713682Z 15:49:35.966 INFO  Sensor IaC actionlint report Sensor [iac]
2026-04-13T15:49:35.9714305Z 15:49:35.966 INFO  Sensor IaC actionlint report Sensor [iac] (done) | time=0ms
2026-04-13T15:49:35.9714966Z 15:49:35.966 INFO  Sensor IaC Azure Pipelines Sensor [iac]
2026-04-13T15:49:35.9864243Z 15:49:35.985 INFO  There are no files to be analyzed for the Azure Pipelines language
2026-04-13T15:49:35.9902867Z 15:49:35.986 INFO  Sensor IaC Azure Pipelines Sensor [iac] (done) | time=19ms
2026-04-13T15:49:35.9952813Z 15:49:35.988 INFO  Sensor IaC Shell Sensor [iac]
2026-04-13T15:49:35.9992851Z 15:49:35.988 INFO  There are no files to be analyzed for the Shell language
2026-04-13T15:49:36.0022851Z 15:49:35.988 INFO  Sensor IaC Shell Sensor [iac] (done) | time=0ms
2026-04-13T15:49:36.0042845Z 15:49:35.989 INFO  Sensor T-SQL Sensor [tsql]
2026-04-13T15:49:36.0043280Z 15:49:35.989 INFO  Sensor T-SQL Sensor is restricted to changed files only
2026-04-13T15:49:36.0112853Z 15:49:36.008 INFO  0 source files to be analyzed
2026-04-13T15:49:36.0150649Z 15:49:36.008 INFO  Sensor T-SQL Sensor [tsql] (done) | time=23ms
2026-04-13T15:49:36.0172804Z 15:49:36.011 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript]
2026-04-13T15:49:36.3562733Z 15:49:36.355 INFO  Detected os: Linux arch: amd64 alpine: false. Platform: LINUX_X64
2026-04-13T15:49:36.3576938Z 15:49:36.357 INFO  Deploy location /home/vsts/.sonar/js/node-runtime, tagetRuntime: /home/vsts/.sonar/js/node-runtime/node,  version: /home/vsts/.sonar/js/node-runtime/version.txt
2026-04-13T15:49:39.7311759Z 15:49:39.730 INFO  Using embedded Node.js runtime.
2026-04-13T15:49:39.7316695Z 15:49:39.731 INFO  Using Node.js executable: '/home/vsts/.sonar/js/node-runtime/node'.
2026-04-13T15:49:41.7973009Z 15:49:41.783 INFO  Memory configuration: OS (7938 MB), Node.js (2240 MB).
2026-04-13T15:49:41.9524477Z 15:49:41.932 INFO  WebSocket client connected on /ws
2026-04-13T15:49:41.9524870Z 15:49:41.937 INFO  Plugin version: [12.3.0.39932]
2026-04-13T15:49:45.4539988Z 15:49:45.453 INFO  Found 1 tsconfig.json file(s): [/home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json]
2026-04-13T15:50:35.0715311Z ##[error]15:50:35.060 ERROR Error: Unknown word -->
15:50:35.061 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
15:50:35.061 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
15:50:35.061 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
2026-04-13T15:50:35.0728273Z 15:50:35.060 ERROR Error: Unknown word -->
2026-04-13T15:50:35.0728710Z 15:50:35.061 ERROR     at e.parsingError (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2423:23226)
2026-04-13T15:50:35.0729181Z 15:50:35.061 ERROR     at Mwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:522)
2026-04-13T15:50:35.0729635Z 15:50:35.061 ERROR     at Lwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:48)
2026-04-13T15:50:35.0732542Z ##[error]15:50:35.064 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
15:50:35.064 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
15:50:35.064 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
15:50:35.064 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
15:50:35.064 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
15:50:35.065 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
15:50:35.065 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-13T15:50:35.0734510Z 15:50:35.064 ERROR     at async qai (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:402)
2026-04-13T15:50:35.0734949Z 15:50:35.064 ERROR     at async jwg (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1538)
2026-04-13T15:50:35.0735412Z 15:50:35.064 ERROR     at async lMe (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:1373)
2026-04-13T15:50:35.0735931Z 15:50:35.064 ERROR     at async fel (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:15285)
2026-04-13T15:50:35.0736389Z 15:50:35.064 ERROR     at async del (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:16926)
2026-04-13T15:50:35.0736853Z 15:50:35.065 ERROR     at async ttt (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:20760)
2026-04-13T15:50:35.0737327Z 15:50:35.065 ERROR     at async MessagePort.<anonymous> (/home/vsts/work/1/s/.scannerwork/.sonartmp/bridge-bundle/package/bin/server.cjs:2427:24713)
2026-04-13T15:50:35.0738189Z 15:50:35.070 WARN  Failed to parse file [LynxWebApp/AIS.LynxWebApp/App_Offline.ONLINE.htm] at line 59: Unknown word -->
2026-04-13T15:50:36.5766790Z 15:50:36.574 INFO  979 source files to be analyzed
2026-04-13T15:50:36.5825533Z 15:50:36.576 INFO  Creating TypeScript(5.9.3) program with configuration file /home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-13T15:50:36.5885843Z 15:50:36.577 INFO  Analyzing 444 file(s) from tsconfig /home/vsts/work/1/s/LynxWebApp/AIS.LynxWebApp/tsconfig.json (506 total files in program)
2026-04-13T15:50:36.5910310Z 15:50:36.581 INFO  JasminAstConsumer done
2026-04-13T15:50:36.5911525Z 15:50:36.581 INFO  Hit the cache for 0 out of 895
2026-04-13T15:50:36.5912042Z 15:50:36.582 INFO  Miss the cache for 895 out of 895: FILE_CHANGED [895/895]
2026-04-13T15:50:36.5912882Z 15:50:36.582 INFO  Sensor JavaScript/TypeScript/CSS analysis [javascript] (done) | time=60571ms
2026-04-13T15:50:36.5913392Z 15:50:36.587 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend]
2026-04-13T15:50:36.5913893Z 15:50:36.587 INFO  Sensor CSharpModuleSecuritySensor [securitycsharpfrontend] (done) | time=0ms
2026-04-13T15:50:36.5914364Z 15:50:36.588 INFO  Sensor HTML [web]
2026-04-13T15:50:36.5915160Z 15:50:36.588 INFO  Sensor HTML is restricted to changed files only
2026-04-13T15:50:36.5933664Z 15:50:36.591 INFO  Sensor HTML [web] (done) | time=7ms
2026-04-13T15:50:36.5965132Z 15:50:36.592 INFO  Sensor XML Sensor [xml]
2026-04-13T15:50:36.5966908Z 15:50:36.592 INFO  Sensor XML Sensor is restricted to changed files only
2026-04-13T15:50:36.6016104Z 15:50:36.601 INFO  Sensor XML Sensor [xml] (done) | time=7ms
2026-04-13T15:50:36.6045288Z 15:50:36.601 INFO  Sensor JasminFileCollectorSensor [jasmin]
2026-04-13T15:50:36.6083006Z 15:50:36.604 INFO  Analyzing 353 file(s) using merged compiler options [lib: lib.es2022.d.ts, lib.dom.d.ts]
2026-04-13T15:50:36.6103182Z 15:50:36.608 INFO  Sensor JasminFileCollectorSensor [jasmin] (done) | time=6ms
2026-04-13T15:50:36.6136944Z 15:50:36.608 INFO  Sensor IaC JSON Sensor [iac]
2026-04-13T15:50:36.6163056Z 15:50:36.608 INFO  Sensor for language "JSON" is enabled by a feature flag. You can disable it by setting "sonar.json.activate" to false.
2026-04-13T15:50:36.6366366Z 15:50:36.635 INFO  15 source files to be analyzed
2026-04-13T15:50:36.6389828Z 15:50:36.638 INFO  979/979 source files have been analyzed
2026-04-13T15:50:36.7473371Z 15:50:36.745 INFO  15/15 source files have been analyzed
2026-04-13T15:50:36.7554929Z 15:50:36.753 INFO  Sensor IaC JSON Sensor [iac] (done) | time=145ms
2026-04-13T15:50:36.7573166Z 15:50:36.753 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise]
2026-04-13T15:50:36.7593085Z 15:50:36.753 INFO  Sensor EnterpriseTextAndSecretsSensor is restricted to changed files only
2026-04-13T15:50:36.7703246Z 15:50:36.769 INFO  Available processors: 2
2026-04-13T15:50:36.7722859Z 15:50:36.769 INFO  Using 2 threads for analysis.
2026-04-13T15:50:37.2891331Z 15:50:37.288 INFO  The property "sonar.tests" is not set. To improve the analysis accuracy, we categorize a file as a test file if any of the following is true:
2026-04-13T15:50:37.2912090Z   * The filename starts with "test"
2026-04-13T15:50:37.2927389Z   * The filename contains "test." or "tests."
2026-04-13T15:50:37.2931479Z   * Any directory in the file path is named: "doc", "docs", "test", "tests", "mock" or "mocks"
2026-04-13T15:50:37.2932089Z   * Any directory in the file path has a name ending in "test" or "tests"
2026-04-13T15:50:37.2932792Z 
2026-04-13T15:50:37.3834523Z 15:50:37.381 INFO  Start fetching files for the text and secrets analysis
2026-04-13T15:50:37.3909163Z 15:50:37.390 INFO  Using Git CLI to retrieve dirty files
2026-04-13T15:50:37.8164038Z 15:50:37.815 INFO  Retrieving language associated files and files included via "sonar.text.inclusions" that are tracked by git
2026-04-13T15:50:37.8169678Z 15:50:37.816 INFO  Starting the text and secrets analysis
2026-04-13T15:50:37.8183651Z 15:50:37.817 INFO  2 source files to be analyzed for the text and secrets analysis
2026-04-13T15:50:38.1103462Z 15:50:38.108 INFO  2/2 source files have been analyzed for the text and secrets analysis
2026-04-13T15:50:38.1118687Z 15:50:38.110 INFO  Start fetching files for the binary file analysis
2026-04-13T15:50:38.1154472Z 15:50:38.111 INFO  There are no files to be analyzed for the binary file analysis
2026-04-13T15:50:38.1164080Z 15:50:38.115 INFO  Sensor EnterpriseTextAndSecretsSensor [textenterprise] (done) | time=1361ms
2026-04-13T15:50:38.1182996Z 15:50:38.116 INFO  Sensor CSharpSecuritySensor [security]
2026-04-13T15:50:38.1326885Z 15:50:38.128 INFO  27 taint analysis rules enabled.
2026-04-13T15:50:38.1353418Z 15:50:38.132 INFO  No UCFGs have been included for analysis.
2026-04-13T15:50:38.1403168Z 15:50:38.138 INFO  csharp security sensor: Begin: 2026-04-13T15:50:38.117187728Z, End: 2026-04-13T15:50:38.136632495Z, Duration: 00:00:00.019
2026-04-13T15:50:38.1425135Z   Load type hierarchy and UCFGs: Begin: 2026-04-13T15:50:38.125541260Z, End: 2026-04-13T15:50:38.132128064Z, Duration: 00:00:00.006
2026-04-13T15:50:38.1443075Z     Load type hierarchy: Begin: 2026-04-13T15:50:38.125563190Z, End: 2026-04-13T15:50:38.131087969Z, Duration: 00:00:00.005
2026-04-13T15:50:38.1463052Z     Load UCFGs: Begin: 2026-04-13T15:50:38.131493334Z, End: 2026-04-13T15:50:38.132050741Z, Duration: 00:00:00.000
2026-04-13T15:50:38.1471326Z 15:50:38.138 INFO  csharp security sensor peak memory: 483 MB
2026-04-13T15:50:38.1519176Z 15:50:38.140 INFO  Sensor CSharpSecuritySensor [security] (done) | time=24ms
2026-04-13T15:50:38.1572729Z 15:50:38.148 INFO  ------------- Run sensors on project
2026-04-13T15:50:38.3426995Z 15:50:38.337 INFO  Sensor C# Telemetry processor [csharpenterprise]
2026-04-13T15:50:38.3443220Z 15:50:38.341 INFO  Sensor C# Telemetry processor [csharpenterprise] (done) | time=2ms
2026-04-13T15:50:38.3474054Z 15:50:38.341 INFO  Sensor C# Telemetry Json processor [csharpenterprise]
2026-04-13T15:50:38.3474791Z 15:50:38.341 INFO  Sensor C# Telemetry Json processor [csharpenterprise] (done) | time=1ms
2026-04-13T15:50:38.3493092Z 15:50:38.342 INFO  Sensor C# [csharpenterprise]
2026-04-13T15:50:38.3514037Z 15:50:38.342 WARN  Your project contains C# files which cannot be analyzed with the scanner you are using. To analyze C# or VB.NET, you must use the SonarScanner for .NET 5.x or higher, see https://redirect.sonarsource.com/doc/install-configure-scanner-msbuild.html
2026-04-13T15:50:38.3533012Z 15:50:38.342 INFO  Sensor C# [csharpenterprise] (done) | time=0ms
2026-04-13T15:50:38.3533674Z 15:50:38.342 INFO  Sensor Analysis Warnings import [csharpenterprise]
2026-04-13T15:50:38.3553070Z 15:50:38.344 INFO  Sensor Analysis Warnings import [csharpenterprise] (done) | time=0ms
2026-04-13T15:50:38.3572975Z 15:50:38.344 INFO  Sensor C# File Caching Sensor [csharpenterprise]
2026-04-13T15:50:38.3585431Z 15:50:38.344 INFO  Sensor C# File Caching Sensor [csharpenterprise] (done) | time=0ms
2026-04-13T15:50:38.3586033Z 15:50:38.344 INFO  Sensor C# A3S Context processor [csharpenterprise]
2026-04-13T15:50:38.3603187Z 15:50:38.345 INFO  A3S is disabled
2026-04-13T15:50:38.3622992Z 15:50:38.345 INFO  Sensor C# A3S Context processor [csharpenterprise] (done) | time=0ms
2026-04-13T15:50:38.3632954Z 15:50:38.349 INFO  Sensor JsSecuritySensorV2 [jasmin]
2026-04-13T15:50:38.4063285Z 15:50:38.405 INFO  797 file(s) will be analysed by SonarJasmin.
2026-04-13T15:50:47.7851161Z 15:50:47.784 INFO  Analysis progress:   6% (50/797 files)
2026-04-13T15:50:56.4794114Z 15:50:56.461 INFO  Analysis progress:  12% (100/797 files)
2026-04-13T15:50:59.5433215Z 15:50:59.539 INFO  Analysis progress:  18% (150/797 files)
2026-04-13T15:51:04.0208793Z 15:51:04.019 INFO  Analysis progress:  25% (200/797 files)
2026-04-13T15:51:07.1915081Z 15:51:07.186 INFO  Analysis progress:  31% (250/797 files)
2026-04-13T15:51:07.4255010Z 15:51:07.424 INFO  Analysis progress:  37% (300/797 files)
2026-04-13T15:51:08.3575750Z 15:51:08.354 INFO  Analysis progress:  43% (350/797 files)
2026-04-13T15:51:08.9507094Z 15:51:08.950 INFO  Analysis progress:  50% (400/797 files)
2026-04-13T15:51:09.2161440Z 15:51:09.215 INFO  Analysis progress:  56% (450/797 files)
2026-04-13T15:51:09.3428688Z 15:51:09.341 INFO  Analysis progress:  62% (500/797 files)
2026-04-13T15:51:09.5169422Z 15:51:09.516 INFO  Analysis progress:  69% (550/797 files)
2026-04-13T15:51:10.1135631Z 15:51:10.112 INFO  Analysis progress:  75% (600/797 files)
2026-04-13T15:51:10.2393477Z 15:51:10.238 INFO  Analysis progress:  81% (650/797 files)
2026-04-13T15:51:10.3135874Z 15:51:10.311 INFO  Analysis progress:  87% (700/797 files)
2026-04-13T15:51:10.5333255Z 15:51:10.531 INFO  Analysis progress:  94% (750/797 files)
2026-04-13T15:51:10.8435649Z 15:51:10.839 INFO  Sensor JsSecuritySensorV2 [jasmin] (done) | time=32493ms
2026-04-13T15:51:10.8463280Z 15:51:10.839 INFO  Sensor CveReachabilitySensor [cvereachability]
2026-04-13T15:51:10.8483024Z 15:51:10.840 INFO  Skipping CveReachabilitySensor
2026-04-13T15:51:10.8503161Z 15:51:10.840 INFO  Sensor CveReachabilitySensor [cvereachability] (done) | time=0ms
2026-04-13T15:51:10.8523030Z 15:51:10.840 INFO  Sensor JsArchitectureSensor [architecture]
2026-04-13T15:51:10.8761796Z 15:51:10.875 INFO  Found 1 potential Udg file location(s) for "js" in "/home/vsts/work/1/s/.scannerwork"
2026-04-13T15:51:10.8763310Z 15:51:10.875 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/js
2026-04-13T15:51:10.8903405Z 15:51:10.888 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T15:51:10.8938074Z 15:51:10.893 INFO  * Protobuf reading starting | memory total=1002 | free=455 | used=546 (MB)
2026-04-13T15:51:10.8956072Z 15:51:10.893 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/js"
2026-04-13T15:51:11.1603389Z 15:51:11.159 INFO  * Files successfully loaded: "353" out of "353"
2026-04-13T15:51:11.1643111Z 15:51:11.161 INFO  * Purging externals (components not scanned) from graphs
2026-04-13T15:51:11.1656086Z 15:51:11.163 INFO  * Purging excluded nodes from graphs
2026-04-13T15:51:11.2058732Z 15:51:11.204 INFO  * Protobuf reading complete | memory total=1002 | free=435 | used=566 (MB)
2026-04-13T15:51:11.3503283Z 15:51:11.348 INFO  * Build architecture.graph.js.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=1002 | free=425 | used=576 (MB)
2026-04-13T15:51:11.3860697Z 15:51:11.385 INFO  No directives configured
2026-04-13T15:51:11.3953156Z 15:51:11.393 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T15:51:11.7715897Z 15:51:11.770 INFO  Sensor JsArchitectureSensor [architecture] (done) | time=932ms
2026-04-13T15:51:11.7743038Z 15:51:11.771 INFO  Sensor TsArchitectureSensor [architecture]
2026-04-13T15:51:11.8204284Z 15:51:11.819 INFO  Found 1 potential Udg file location(s) for "ts" in "/home/vsts/work/1/s/.scannerwork"
2026-04-13T15:51:11.8283205Z 15:51:11.820 INFO  - /home/vsts/work/1/s/.scannerwork/architecture/ts
2026-04-13T15:51:11.8302944Z 15:51:11.820 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T15:51:11.8303438Z 15:51:11.823 INFO  * Protobuf reading starting | memory total=1002 | free=370 | used=631 (MB)
2026-04-13T15:51:11.8303929Z 15:51:11.825 INFO  * Reading SonarArchitecture UDG data from directory "/home/vsts/work/1/s/.scannerwork/architecture/ts"
2026-04-13T15:51:11.9093948Z 15:51:11.901 INFO  * Files successfully loaded: "444" out of "444"
2026-04-13T15:51:11.9132951Z 15:51:11.905 INFO  * Purging externals (components not scanned) from graphs
2026-04-13T15:51:11.9133676Z 15:51:11.905 INFO  * Purging excluded nodes from graphs
2026-04-13T15:51:11.9233107Z 15:51:11.919 INFO  * Protobuf reading complete | memory total=1002 | free=358 | used=643 (MB)
2026-04-13T15:51:11.9457398Z 15:51:11.943 INFO  * Build architecture.graph.ts.file_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=1002 | free=343 | used=658 (MB)
2026-04-13T15:51:11.9633326Z 15:51:11.961 INFO  No directives configured
2026-04-13T15:51:11.9649473Z 15:51:11.961 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T15:51:12.2001074Z 15:51:12.199 INFO  Sensor TsArchitectureSensor [architecture] (done) | time=425ms
2026-04-13T15:51:12.2033057Z 15:51:12.200 INFO  Sensor CSharpArchitectureSensor [architecture]
2026-04-13T15:51:13.0492874Z 15:51:13.048 INFO  Found 0 potential Udg file location(s) for "cs" in "/home/vsts/work/1/s"
2026-04-13T15:51:13.0526424Z 15:51:13.049 INFO  Architecture analysis is enabled with the following features: legacy, discovery, flaws, smells, deviations, directives
2026-04-13T15:51:13.0538295Z 15:51:13.051 INFO  * Protobuf reading starting | memory total=1002 | free=217 | used=784 (MB)
2026-04-13T15:51:13.0563017Z 15:51:13.051 INFO  * Protobuf reading complete | memory total=1002 | free=217 | used=784 (MB)
2026-04-13T15:51:13.0643239Z 15:51:13.060 INFO  * Build architecture.graph.cs.namespace_graph.default_perspective hierarchy graph complete (filtered=false) | memory total=1002 | free=217 | used=784 (MB)
2026-04-13T15:51:13.0663073Z 15:51:13.062 INFO  No directives configured
2026-04-13T15:51:13.0670488Z 15:51:13.062 INFO  * No intended architecture defined or detected, using an empty model
2026-04-13T15:51:13.0692604Z 15:51:13.062 INFO  Sensor CSharpArchitectureSensor [architecture] (done) | time=865ms
2026-04-13T15:51:13.0727206Z 15:51:13.063 INFO  Sensor Zero Coverage Sensor
2026-04-13T15:51:13.3105140Z 15:51:13.309 INFO  Sensor Zero Coverage Sensor (done) | time=246ms
2026-04-13T15:51:13.3133727Z 15:51:13.312 INFO  Sensor Architecture Telemetry [architecture]
2026-04-13T15:51:13.3154960Z 15:51:13.312 INFO  Sensor Architecture Telemetry [architecture] (done) | time=0ms
2026-04-13T15:51:13.7273217Z 15:51:13.724 INFO  ------------- Gather SCA dependencies on project
2026-04-13T15:51:14.1693772Z 15:51:14.168 INFO  Dependency analysis skipped
2026-04-13T15:51:14.3879721Z 15:51:14.386 INFO  CPD Executor 191 files had no CPD blocks
2026-04-13T15:51:14.3881956Z 15:51:14.387 INFO  CPD Executor Calculating CPD for 692 files
2026-04-13T15:51:14.9064594Z 15:51:14.903 INFO  CPD Executor CPD calculation finished (done) | time=514ms
2026-04-13T15:51:14.9177950Z 15:51:14.916 INFO  SCM Publisher SCM provider for this project is: git
2026-04-13T15:51:14.9194040Z 15:51:14.917 INFO  SCM Publisher 2 source files to be analyzed
2026-04-13T15:51:15.6936556Z 15:51:15.693 INFO  SCM Publisher 2/2 source files have been analyzed (done) | time=775ms
2026-04-13T15:51:15.7053610Z 15:51:15.704 INFO  SCM revision ID '227cad025d19570d2e8bd9166d96bff7858321e9'
2026-04-13T15:51:16.1784227Z 15:51:16.177 INFO  SCM writing changed lines
2026-04-13T15:51:16.2052447Z 15:51:16.203 INFO  Merge base sha1: cbf6947d35380e4d420810a801005c5809b050c8
2026-04-13T15:51:16.3143942Z 15:51:16.312 INFO  SCM writing changed lines (done) | time=135ms
2026-04-13T15:51:16.9569332Z 15:51:16.956 INFO  Analysis report generated in 1171ms, dir size=2 MB
2026-04-13T15:51:18.1692017Z 15:51:18.168 INFO  Analysis report compressed in 1213ms, zip size=2 MB
2026-04-13T15:51:21.2364500Z 15:51:21.234 INFO  Analysis report uploaded in 3065ms
2026-04-13T15:51:21.2391550Z 15:51:21.238 INFO  ANALYSIS SUCCESSFUL, you can find the results at: https://sonarcloud.io/dashboard?id=AISHealthcare_lynx&pullRequest=3980
2026-04-13T15:51:21.2394328Z 15:51:21.238 INFO  Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
2026-04-13T15:51:21.2395008Z 15:51:21.238 INFO  More about the report processing at https://sonarcloud.io/api/ce/task?id=AZ2Hik0wy-eFvxMt47lB
2026-04-13T15:51:21.2395556Z 15:51:21.238 INFO  ------------- Upload SCA dependency files
2026-04-13T15:51:24.3631544Z 15:51:24.362 INFO  Successfully sent architecture data
2026-04-13T15:51:24.8152779Z 15:51:24.812 INFO  Analysis total time: 2:08.689 s
2026-04-13T15:51:24.8155006Z 15:51:24.812 INFO  SonarScanner Engine completed successfully
2026-04-13T15:51:25.2479312Z 15:51:25.247 INFO  EXECUTION SUCCESS
2026-04-13T15:51:25.2490778Z 15:51:25.248 INFO  Total time: 2:19.189s
2026-04-13T15:51:25.5697486Z 
2026-04-13T15:51:25.5779744Z ##[section]Finishing: SonarCloudAnalyze

Hi,

Can you point out what parts of the first log make you think it’s analyzing only changed lines? Because I’m seeing this:

And BTW:

 
Thx,
Ann

After publishing to sonarcloud, the first one only has 2 new issues at a changed line I made which is expected.

The second one has 12 new issues that includes places that I didn’t make changes to.

These 2 PRs are from the same branch but to 2 different branches (1 is our main branch, the other is a branch from our main branch)

Hi,

When was the other target branch last analyzed? SonarQube Cloud raises issues in PRs versus the target branch. So if your most recent target branch analysis is stale then this is the effect you get.

 
HTH,
Ann

Thank you for the reply. I triggered the analysis run right before my previous post and posted the logs right after they’re finished (both PRs).

So I noticed if I cut a new branch of our main branch e.g. Dev-test then PR into that branch. I got the results I wanted (changed lines analysis only). I think it has something to do with how Sonar Cloud treats a PR to main branch vs non-main branch. Is there a way for me to change what Sonar Cloud considers as main branch?

Hi,

This really isn’t about what’s main but about how recently the target branch was analyzed.

And unfortunately, no. There’s no way on SonarQube Cloud (it does exist on Server) to change what’s main. For the options you do have, take a look here.

 
Ann