我可以获得注册到TfsTeamProjectCollection的服务列表

时间:2017-02-21 15:59:34

标签: powershell tfs

我正在使用PowerShell连接到TFS并执行各种操作。我可以做这个: $ Uri = New-Object System.Uri(“http://mycompany.com/tfs/collection”) $ t = New-Object Microsoft.TeamFoundation.Client.TfsTeamProjectCollection($ Uri,$ TfsClientCredentials) $ t.Authenticate() $ CSS = $ t.GetService([Microsoft.TeamFoundation.Server.ICommonStructureService]) 一切正常。但是我找不到像我在这里使用过的ICommonStructureService这样的内置服务列表。我找到了一些列出其中一些内容的页面: https://blogs.msdn.microsoft.com/taylaf/2010/02/23/introducing-the-tfsconnection-tfsconfigurationserver-and-tfsteamprojectcollection-classes/ 但这已经过时了。 有什么地方我可以看到完整的清单吗?

1 个答案:

答案 0 :(得分:4)

您可以使用抽象类TfsConnection定义的GetServiceTfsConfigurationServerTfsTeamProjectCollection实现的 body {margin:0;} .Header { z-index: 100; position: fixed; top: 0; width: 100%; background-color: #000000; height: 70px; } @media screen and (max-width:680px) { .Header.responsive {position: relative;} .Header.responsive li.icon { position: absolute; right: 0; top: 0; } } @media (max-width: 960px){ .Header .headerLogo{ position: relative; display: flex; width: 86px; height: 15px; margin: 0 auto; } } .headerLogo{ text-align: center; font-size: small; font-style: italic; font-family: Verdana; color: white; } #section1 { text-align:left; background-color: black; color: white; padding: 500px 0 500px 0; }方法之一来访问其他服务。

使用TfsTeamProjectCollection类时,可以访问团队项目集合的服务。以下是完整列表: enter image description here

更多详细信息请参阅此文章:Getting Additional Team Foundation Services