How do I get a list of Team Foundation Server Servers available on my PC?

主宰稳场 提交于 2019-12-06 05:39:35

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:

Visual Studio 2008 location:

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

Visual Studio 2010:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\TeamFoundation\Instances\

Visual Studio 2012

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\TeamFoundation\Instances\

Visual Studio 2013

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\TeamFoundation\Instances\

Visual Studio 2015

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0\TeamFoundation\Instances\

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

For Visual Studio 2012, the location in the registry key is:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\TeamFoundation\Instances\tfs

To list all workspaces that "tf workspaces" would return (which includes URI and mapped paths):

var allWorkspaceInfos = Workstation.Current.GetAllLocalWorkspaceInfo();

To get the TFS workspace containing a particular directory:

var workspaceInfo = Workstation.Current.GetLocalWorkspaceInfo(@"C:\Users\joey\tfs");

I found this by decompiling TF.exe. But there is documentation for the Workstation class.

These methods return WorkspaceInfo objects. To perform source control operations, you need to connect to the server and get a Workspace object:

var collection = new TfsTeamProjectCollection(workspaceInfo.ServerUri);
collection.Authenticate();
var server = collection.GetService<VersionControlServer>();
var workspace = server.GetWorkspace(scriptRoot);
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!