Please can anyone assist.
I need to find a way to report on the number of code changes per developer at any time (the number of line changes). I.e File X had 10 line additions for developer Y.
I know that with on-prem servers this can be done, but have not found a way (api, tool etc) for Azure Devops Cloud to report on Code Churn and Coverage.
Is anyone aware of anything out there that may assist me in reporting on this?
Thank you for your time and feedback.
Code Churn and Coverage feature is not supported in Azure DevOps services currently.
There are extensions Count Lines of Code extension you might find helpful to count code lines in build pipeline and the result will be reported as a section on the build summary page. And extension Recent Code Commits Widget to show the recent code commits in Dashboards.
There are also extensions for code coverage that you can use, eg. Code Coverage Protector or Code Coverage Widgets.
You can also create scripts to call Rest api to get the specific version of a items in your repo and count the changes. Please check the examples to call rest api in Get started with azure devops services
You can submit a feature request(click suggest a feature and select Azure Devops) for enabling Code Churn and Coverage feature to Microsoft development team. Hope they will consider this and implement it in the future.