It looks to me that the build and analysis were in progress when they were stopped (analyzing mpm.Tarificador.Logica.csproj). How long did you wait until you cancelled the build and how long does the build usually takes?
Do you know if there is a single project that is causing this?
Hi, Costin. I think I was too impatient and canceled the scan early, because I tried again and in a couple of hours it was over. Sorry, you can close the thread.
thanks a lot for the update. A couple of hours is already long. Would it be possible to generate the binary log when calling msbuild in verbose mode (while doing the analysis) and send it to us?
something similar with
SonarScanner.MSBuild.exe begin ...
dotnet build --no-incremental /p:reportanalyzer=true -bl:build.binlog
or
SonarScanner.MSBuild.exe begin ...
msbuild Solution.sln /t:Rebuild /p:reportanalyzer=true -bl:build.binlog
It will contain a report with the time spent in our analyzers and we could see what rules are expensive and where should invest our time to improve the performance.