The analysis configuration file could not be found

Hi,

We are trying to analyze .Net code that is present in github repository and while trying to do sonar scan using dotnet-sonarscanner command the error which is making the pipeline to fail is below.

Error: SonarQube analysis could not be completed because the analysis configuration file could not be found: SonarQubeAnalysisConfig.xml

Below is the step that throwing the above error:
- name: Check coverage using sonar-scanner and coverage tools
shell: pwsh
working-directory: ${{env.workingDirectory}}/UnitTestCases
run: |
dotnet-sonarscanner begin /k:“eventcareplatformupgradeunittest” /d:sonar.token=“${{ secrets.SONAR_TOKEN }}” /d:sonar.host.url=“${{ secrets.SONAR_HOST_URL }}”
dotnet build --no-incremental
dotnet-sonarscanner end /d:sonar.token=“${{ secrets.SONAR_TOKEN }}”

Previously, the pipeline used to work fine, but when we tried to change the localhost to ipaddress then this issue has started. However, we have reverted back to localhost but the error is persisting. Can someone please help on the issue.

Thanks.

Hey there.

I suggest sharing the full log output from this step, redacted if needed.