"No analysable projects were found" error in Run Code Analysis task

i’m using .NET core application with azure pipelines. i configured following tasks in build pipeline
-Prepare analysis on SonarCloud
-Run Code Analysis
-Publish Quality Gate Result
while running Run Code Analysis task, it failed with the following error

##[error]No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.

No analysable projects were found. SonarQube analysis will not be performed. Check the build summary report for details.

Generation of the sonar-properties file failed. Unable to complete SonarQube analysis.

##[error]06:58:19.586 Post-processing failed. Exit code: 1

06:58:19.586 Post-processing failed. Exit code: 1

##[error]The process

can i get help to solve this issue?

Hi @Kelum_Edirisinghe and welcome to the community !

Maybe a dumb question, but have you put the dotnet build task between the Prepare analysis and Run Code analysis tasks ?
How did you setup the Prepare analysis configuration task ?

Thank you !

Hi @mickaelcaro, thank you!
yes i already added build task between Prepare analysis on SonarCloud task and Run Code Analysis task.
i’ve used token to verification and use MSBuild option to configure task with default property configuration for Prepare analysis on SonarCloud task.

Ok, thanks.

Is that possible for you to re-rerun the build, with debug mode enabled (system.debug = true) and share the Prepare analysis configuration and Run Code analysis logs ?

Thank you.

FIXED THAT ISSUE. If you using .NET Core as your project you need to add project guide tag to your each csproj.

<ProjectGuid>{aaaa-aaaa-aaaa-aaaa-aaaa}</ProjectGuid>

project guide of each cscsproj is defined in .sln file.