构建一个客户端,获取有关 Team Foundation 服务器上托管的项目的信息

发布于 2024-11-19 08:42:18 字数 238 浏览 0 评论 0 原文

我需要构建一个连接到 Team Foundation 服务器并检索有关当前活动项目的信息的客户端应用程序。

我应该如何处理这个问题? TFS 是否有公开此信息的内置 REST Web 服务?或者我是否还必须使用一些 tfs sdk 创建一个服务器组件?

客户端将用 javascript 编写。

我自己做了一些研究,但找不到任何与此相关的信息,所以也许从事类似项目的人可以提供一些有用的信息。

谢谢

I need to build a client application that connects to the team foundation server and retrieves information about the current active projects.

How should I approach this? Does TFS have a built-in REST webservice that exposes this information? Or do I have to create a server component as well using some tfs sdk?

Client will be written in javascript.

Did some research myself but couldn't find anything relevant regarding this, so maybe someone who worked on a similar project could provide some helpful information.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伏妖词 2024-11-26 08:42:18

您可以使用 TFS SDK 来实现此目的。
1. 有关下载位置以及如何以编程方式连接到 TFS 的说明 http://geekswithblogs.net/TarunArora/archive/2011/06/18/tfs-2010-sdk-connecting-to-tfs-2010-programmaticallyndashpart-1.aspx

  1. 连接后,您可以使用以下代码获取所有活动(未删除)的项目,
    您可以使用 ItemamProjectCollectionService 执行各种集合级别的操作,例如删除/创建项目等。 http://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.framework.client.iteamprojectcollectionservice.aspx

    var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(@"TheTfsUrl"));
    var versionControl = tfs.GetService'<'ITeamProjectCollectionService'>'();

  2. 循环浏览每个项目,您将获得以下可用信息。
    或者,您可以使用 VersionControlService 获取所有项目并循环访问每个项目以获取信息

    var version = tfs.GetService'<'VersionControlServer'>'();
    var 项目 = version.GetAllTeamProjects(true);

     foreach(项目中的 TeamProject p)
        {
    
        }
    

团队项目对象 => http://msdn.microsoft.com/en -us/library/microsoft.teamfoundation.versioncontrol.client.teamproject.aspx

HTH。

干杯,塔伦

You can use the TFS SDK to achive this.
1. Instructions on where to download and how to connect to TFS programmatically http://geekswithblogs.net/TarunArora/archive/2011/06/18/tfs-2010-sdk-connecting-to-tfs-2010-programmaticallyndashpart-1.aspx

  1. Once connected, you can get all active (not deleted) projects by using the following code,
    You can use the IteamProjectCollectionService to perform various collection level operations, such as delete/create projects, etc. http://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.framework.client.iteamprojectcollectionservice.aspx

    var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(@"TheTfsUrl"));
    var versionControl = tfs.GetService'<'ITeamProjectCollectionService'>'();

  2. Loop through each of the projects and you have the following information available.
    Alternatively you can use the VersionControlService to get all projects and loop through each project to get the information

    var version = tfs.GetService'<'VersionControlServer'>'();
    var projects = version.GetAllTeamProjects(true);

        foreach (TeamProject p in projects)
        {
    
        }
    

Team Project object => http://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.versioncontrol.client.teamproject.aspx

HTH.

Cheers, Tarun

孤蝉 2024-11-26 08:42:18

TFS 有肥皂端点。当您在 TFS 中执行操作时启动 fiddler,您就会看到。

TFS has soap endpoints. Fire up fiddler while you do stuff in TFS and you will see.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文