Sonar-scanner-cli can not scan a simple C# example file

Hi all.
I’m trying to test sonarqube from my kali linux.
So I execute sonarqube docker to test a simple C# file with a buffer overflow and place it in “/home/kali/Desktop/test/src-analysis/”.

I set a sepcific project to scan the C file (starting from 127.0.0.1:9000 interface).
Then I execute scanning from my kali machine by means of this command:
$ sudo docker run --rm -e SONAR_HOST_URL=“http://localhost:9000” -e SONAR_LOGIN=“sqp_4db95fb0b2dd14663d97080339988ddecf1d4f33” -v “/home/kali/Desktop/test/src-analysis:/usr/src” --network host sonarsource/sonar-scanner-cli -Dsonar.projectKey=devsti -Dsonar.scm.disabled=True

But I get this log which show that 0 files are analyzed.

INFO: Scanner configuration file: /opt/sonar-scanner/conf/sonar-scanner.properties
INFO: Project root configuration file: NONE
INFO: SonarScanner 4.7.0.2747
INFO: Java 11.0.14 Alpine (64-bit)
INFO: Linux 5.15.0-kali3-amd64 amd64
INFO: User cache: /opt/sonar-scanner/.sonar/cache
INFO: Scanner configuration file: /opt/sonar-scanner/conf/sonar-scanner.properties
INFO: Project root configuration file: NONE
INFO: Analyzing on SonarQube server 9.5.0.56709
INFO: Default locale: “en_US”, source code encoding: “UTF-8” (analysis is platform dependent)
INFO: Load global settings
INFO: Load global settings (done) | time=195ms
INFO: Server id: 147B411E-AYF2w08MEorHcIwuEUDs
INFO: User cache: /opt/sonar-scanner/.sonar/cache
INFO: Load/download plugins
INFO: Load plugins index
INFO: Load plugins index (done) | time=151ms
INFO: Load/download plugins (done) | time=4781ms
INFO: Process project properties
INFO: Process project properties (done) | time=1ms
INFO: Execute project builders
INFO: Execute project builders (done) | time=3ms
INFO: Project key: prjc
INFO: Base dir: /usr/src
INFO: Working dir: /usr/src/.scannerwork
INFO: Load project settings for component key: ‘prjc’
INFO: Load project settings for component key: ‘prjc’ (done) | time=28ms
INFO: Load quality profiles
INFO: Load quality profiles (done) | time=113ms
INFO: Load active rules
INFO: Load active rules (done) | time=4214ms
INFO: Load analysis cache
INFO: Load analysis cache (404) | time=21ms
INFO: Load project repositories
INFO: Load project repositories (done) | time=32ms
INFO: Indexing files…
INFO: Project configuration:
INFO: 1 file indexed
INFO: ------------- Run sensors on module prjc
INFO: Load metrics repository
INFO: Load metrics repository (done) | time=53ms
INFO: Sensor JaCoCo XML Report Importer [jacoco]
INFO: ‘sonar.coverage.jacoco.xmlReportPaths’ is not defined. Using default locations: target/site/jacoco/jacoco.xml,target/site/jacoco-it/jacoco.xml,build/reports/jacoco/test/jacocoTestReport.xml
INFO: No report imported, no coverage information will be imported by JaCoCo XML Report Importer
INFO: Sensor JaCoCo XML Report Importer [jacoco] (done) | time=12ms
INFO: Sensor CSS Rules [javascript]
INFO: No CSS, PHP, HTML or VueJS files are found in the project. CSS analysis is skipped.
INFO: Sensor CSS Rules [javascript] (done) | time=2ms
INFO: Sensor C# Project Type Information [csharp]
INFO: Sensor C# Project Type Information [csharp] (done) | time=3ms
INFO: Sensor C# Analysis Log [csharp]
INFO: Sensor C# Analysis Log [csharp] (done) | time=52ms
INFO: Sensor C# Properties [csharp]
INFO: Sensor C# Properties [csharp] (done) | time=0ms
INFO: Sensor HTML [web]
INFO: Sensor HTML [web] (done) | time=8ms
INFO: Sensor Text Sensor [text]
INFO: 0 source files to be analyzed
INFO: 0/0 source files have been analyzed
INFO: Sensor Text Sensor [text] (done) | time=11ms
INFO: Sensor VB. NET Project Type Information [vbnet]
INFO: Sensor VB. NET Project Type Information [vbnet] (done) | time=2ms
INFO: Sensor VB. NET Analysis Log [vbnet]
INFO: Sensor VB. NET Analysis Log [vbnet] (done) | time=47ms
INFO: Sensor VB. NET Properties [vbnet]
INFO: Sensor VB. NET Properties [vbnet] (done) | time=0ms
INFO: ------------- Run sensors on project
INFO: Sensor Analysis Warnings import [csharp]
INFO: Sensor Analysis Warnings import [csharp] (done) | time=2ms
INFO: Sensor Zero Coverage Sensor
INFO: Sensor Zero Coverage Sensor (done) | time=16ms
INFO: SCM Publisher is disabled
INFO: CPD Executor Calculating CPD for 0 files
INFO: CPD Executor CPD calculation finished (done) | time=0ms
INFO: Analysis report generated in 227ms, dir size=113.1 kB
INFO: Analysis report compressed in 38ms, zip size=13.6 kB
INFO: Analysis report uploaded in 95ms
INFO: ANALYSIS SUCCESSFUL, you can find the results at: http://localhost:9000/dashboard?id=prjc
INFO: Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
INFO: Analysis total time: 12.426 s
INFO: ------------------------------------------------------------------------
INFO: EXECUTION SUCCESS
INFO: ------------------------------------------------------------------------
INFO: Total time: 22.156s
INFO: Final Memory: 15M/54M
INFO: ------------------------------------------------------------------------

Are there some parameters to be set to get my analysis ?
Thanks in advance.

You have to use the Scanner for .NET to analyze C# code.