I'm trying to connect to TFS 2010 using TFS SDK, but can't get VersionControlServer service.

var servers = RegisteredTfsConnections.GetConfigurationServers(); // ok

then

var tfs = new TfsConfigurationServer(servers.First().Uri, CredentialCache.DefaultNetworkCredentials);
// or
var tfs = new TfsConfigurationServer(servers.First());

both always returns null:

var vc = (VersionControlServer)tfs.GetService<VersionControlServer>(); // null!

What should I do?

link|improve this question

feedback

1 Answer

up vote 8 down vote accepted

You don't want the configuration server, you want the project collection. The version control service is scoped to a team project collection. For example:

var projectCollection =
    TfsTeamProjectCollectionFactory.GetTeamProjectCollection(registeredProjectCollection);

var versionControl = projectCollection.GetService<VersionControlServer>();

See also: Connect to a Project Collection

link|improve this answer
Where can I get default collection name? (I know nothing about current TFS, I want to get it from current context) – abatishchev Feb 24 '11 at 3:01
RegisteredTfsConnections.GetProjectCollections() right? – abatishchev Feb 24 '11 at 3:09
Yes, that's right. That will get the collections that are registered with the Team Explorer client on the machine. – Jim Lamb Feb 24 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

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