Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

is it possible to generate a graph in Visual Studio Online to show coders' contributions?

Question is pretty much explained in the title. Did a project with version control in Visual Studio Online. Can I make a graph that shows one coders' amount of contributions and/or lines of code versus others? I know I could do so with GitHub, but can't seem to find it on VSO. This is a low priority question, so no need to break your back over it.

like image 635
GillesDV Avatar asked Dec 15 '15 15:12

GillesDV


1 Answers

Yes you can, if it's OK to use tools outside Visual Studio Online. The Power BI supports VSO and can provide interesting reports about the contributions.

Power BI

The whole procedure is best described on MSDN. But here's the main points:

  1. Select Services - Visual Studio Online - Connect
  2. Connect to your project
  3. Power BI will import the data

Also Scott Hanselman's post about .NET CoreCLR & PowerBI may contain useful information.

Another option is to use offline tools. If your repository's source control is GIT, you can just checkout the branch and run some analytics over it. For example, you can use TortoiseGit and then select "Show log" - Statistics for a graph like this:

TortoiseGIT Statistics

like image 91
Mikael Koskinen Avatar answered Nov 09 '22 14:11

Mikael Koskinen