Can't analyze InspectCode report because the XML file to analyze defined by property resharper.clt.cs.reportPath does not exist: 'inspectcode_result.xml'.
zyx204 opened this issue · 1 comments
Hi,
in azure pipeline report this "Can't analyze InspectCode report because the XML file to analyze defined by property resharper.clt.cs.reportPath does not exist: 'inspectcode_result.xml'."
Just to clarify: this ReSharper/InspectCode plugin for SonarQube imports the findings of an InspectCode
analysis. But it does not on its own call InspectCode
. You have to execute InspectCode
from your build script (or your azure pipeline) and tell InspectCode
in the command line the name of the output file (the same filename that you specify in SonarQube).
Something like
inspectcode.exe "solution_name.sln" --output="inspectcode_result.xml"
Do you already do that? The build log should then confirm this inspectcode execution.