I need to get "Team Foundation Server List" programmatically with C#.

Is this possible? or uri must be specified as follows: TfsTeamProjectCollection tfs = new TfsTeamProjectCollection (new Uri ("http://servername:port/ "));

Thanks in advance

link|improve this question

43% accept rate
feedback

2 Answers

up vote 3 down vote accepted

I had a scan through the documentation and couldn't find anything useful. I believe @samy is correct and there is no discovery mechanism.

However if you are running this on a client machine that already has established connections to TFS then there is a history of servers stored in the registry:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\TeamFoundation\Servers

link|improve this answer
Or for VS2010, HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\TeamFoundation\Instances – tonycoupland Oct 31 '11 at 9:36
feedback

I think the responsibility of keeping track of the servers is your responsibility. There's no discovery options for the servers as far as i know. So you need the uris

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.