Guest User

Untitled

a guest
May 4th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Uri configurationServerUri = new Uri("http://your-server:8080/tfs");
  2. TfsConfigurationServer configurationServer = TfsConfigurationServerFactory.GetConfigurationServer(configurationServerUri);
  3. ITeamProjectCollectionService tpcService = configurationServer.GetService<ITeamProjectCollectionService>();
  4. foreach (TeamProjectCollection tpc in tpcService.GetCollections())
  5. {
  6. List.add(tpc .name);
  7. }
Add Comment
Please, Sign In to add comment