我正在使用TFS API连接到Team Foundation Server。在服务器URI中,我传递服务器的主机名。 我收到错误的URI格式错误。
teamFoundationServer = new TfsTeamProjectCollection(new Uri(this.Server,UriKind.Absolute),this.Credentials); teamFoundationServer.EnsureAuthenticated();
答案 0 :(得分:6)
我认为您需要Team Project Collection的URL,而不仅仅是服务器,可能是:
http://server:8080/tfs/collection
有一个连接MSDN的示例,但它遍历TFS实例上的所有项目集合,但是使用该示例代码,您可以检查TfsTeamProjectCollection.Uri以确认要使用的正确URI。 / p>