Caseycub / gource

Automatically exported from code.google.com/p/gource
0 stars 0 forks source link

TFS Converter #16

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi, i have created program that convert TFS history to Gource log format. 
Are you need this converter?
This converter require installed TFS SDK on the computer.

Original issue reported on code.google.com by phoenixxua on 20 Nov 2009 at 12:58

Attachments:

GoogleCodeExporter commented 8 years ago
Cool. 

Original comment by acaudw...@gmail.com on 21 Nov 2009 at 2:10

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
For credential support just add in Converter.cs

                var credential = new NetworkCredential("USER", "PASS");
                using (var server = new TeamFoundationServer(_tfsUrl,credential))

Original comment by thomas.m...@gmail.com on 25 Jan 2010 at 8:14

GoogleCodeExporter commented 8 years ago
the  check for the resultFile is incorrect: 
if (tfsUrl.Trim().Length == 0)
{
   Console.WriteLine("Missed Out file name");
   return;
}

must be replaced by:

if (resultFile.Trim().Length == 0)
{
   Console.WriteLine("Missed Out file name");
   return;
}

Original comment by miii...@gmail.com on 28 May 2010 at 8:24

GoogleCodeExporter commented 8 years ago
"source.QueryHistory()" is returning only commits made by myself; no other devs 
are 
returned. Anyone have any ideas? Am I missing something? (I had to implement 
the 
credential changes as suggested above.)

Original comment by Ben.Clar...@gmail.com on 1 Jun 2010 at 5:03

GoogleCodeExporter commented 8 years ago
This may be relevant here:
http://sourceforge.net/projects/gourcetfs/

Original comment by acaudw...@gmail.com on 1 Jun 2010 at 6:12

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
Here is an updated version for Visual Studio and TFS 2010

Original comment by Erwin.Wo...@gmail.com on 6 Oct 2011 at 8:39

Attachments: