TfsTeamProjectCollection API

发布于 2024-11-07 11:29:12 字数 253 浏览 0 评论 0 原文

我正在使用 TFS API 连接到 Team Foundation Server。在 Server URI 中,我传递服务器的主机名。 我收到错误 URI 格式错误。

teamFoundationServer = new TfsTeamProjectCollection(new Uri(this.Server,UriKind.Absolute), this.Credentials); teamFoundationServer.EnsureAuthenticated();

I'm using the TFS API to connect to Team Foundation Server. In the Server URI , I'm passing the hostname of the server.
Me getting a Bad URI format error.

teamFoundationServer = new TfsTeamProjectCollection(new Uri(this.Server,UriKind.Absolute), this.Credentials);
teamFoundationServer.EnsureAuthenticated();

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

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

发布评论

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

评论(1

是你 2024-11-14 11:29:12

我认为您需要团队项目集合的 URL,而不仅仅是服务器,可能:

http://server:8080/tfs/collection

有一个连接的示例 MSDN 但它会迭代 TFS 实例上的所有项目集合,但使用该示例代码,您可以检查 TfsTeamProjectCollection.Uri 确认要使用的正确 URI。

I think you need the URL of the Team Project Collection, not just the server, probably:

http://server:8080/tfs/collection

There is an example of connecting on MSDN but it iterates through all the project collections on the TFS instance, but with that example code you could examine TfsTeamProjectCollection.Uri to confirm the correct URI to use.

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