Documentation specifies that it is not suportted for Azure DevOps services. Can you please provide update on documentation?
Please let us know if we would be out of support with next version and what it is timeline for it?
Tasks 5.x and 6.x are both compatible with Azure DevOps Services.
I’ll add Azure DevOps Services to the 6.x compatibility list; it will be published in a few hours.
This raised the point that no clear deprecation policy exists for our scanners and integrations. I funneled the information to the appropriate team.
Meanwhile, note that version @6 task code also works with the SonarQube 9.9 LTA.
And if you need to stay on version @5, it’s possible to specify the exact .NET or CLI scanner version by using the msBuildVersion and cliVersion properties.
What would happen if we use @5 task as it is, without msBuildVersion and cliVersion properties.?
For example we use this for MsBuild task
task: SonarQubePrepare@5
displayName: ‘Configure SonarQube Prepare’
enabled: true
inputs:
SonarQube: ‘ServiceConnectionName’
projectKey: ‘KeyApp’
projectName: ‘KeyApp’
extraProperties: |
# Additional properties that will be passed to the scanner,
# Put one key=value per line, example:
sonar.cs.vstest.reportsPaths=$(Agent.BuildDirectory)\testresults
sonar.cs.vstest.reportsPaths=$(Agent.BuildDirectory)\testresults*.trx
sonar.dependencyCheck.reportPath=$(Agent.BuildDirectory)\TestResults\dependency-check-report.xml
sonar.dependencyCheck.htmlReportPath=$(Agent.BuildDirectory)\TestResults\dependency-check-report.html