TfsTeamProjectCollection API
我正在使用 TFS API 连接到 Team Foundation Server。在 Server URI 中,我传递服务器的主机名。 我收到错误 URI 格式错误。
teamFoundationServer = new TfsTeamProjectCollection(new Uri(this.Server,UriKind.Absolute), this.Credentials); teamFoundationServer.EnsureAuthenticated();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要团队项目集合的 URL,而不仅仅是服务器,可能:
有一个连接的示例 MSDN 但它会迭代 TFS 实例上的所有项目集合,但使用该示例代码,您可以检查 TfsTeamProjectCollection.Uri 确认要使用的正确 URI。
I think you need the URL of the Team Project Collection, not just the server, probably:
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.