Hi Everybody
I am setting up SonarQube for our Azure DevOps build pipeline. The pipeline is written in yaml.
Earlier we just used “- task: VSBuild@1” to build the C++ source code.
I understand I need to change this to use:
build-wrapper-win-x86\build-wrapper-win-x86-64.exe --out-dir bw_output MSBuild.exe <SolutionName>.sln -t:Rebuild -p:Configuration=Release
The question is will SonarQube do any instrumentation or modification of the binary produced ?
Can I still use the binary produced while analysing for a customer release or do I need to keep the VSBuild@1 and do a clean build after the analysis.
/Kennet