6

我想通过编码找出给定的团队项目是否有关联的 SharePoint。如果是,我还想获取 SharePoint 的 URL,以便创建指向它的特定链接。

我不是指 TFS 的 Web 访问,而是相关的 SharePoint。有没有办法在不知道与 TFS 服务器不同的 SharePoint 服务器的 URL 的情况下找出这一点?

4

1 回答 1

6
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.Server;

private static string RetrieveProjectPortalBaseAddress(TfsTeamProjectCollection tfs, string teamProject)
{
   IRegistration registration = (IRegistration)tfs.GetService(typeof(IRegistration));
   RegistrationEntry[] entries = registration.GetRegistrationEntries("TeamProjects");
   ServiceInterface endpoint = entries[0].ServiceInterfaces.FirstOrDefault(si => si.Name == teamProject + ":Portal");
   return endpoint.Url;
}
于 2012-12-11T22:17:48.227 回答