【发布时间】:2014-04-14 09:01:29
【问题描述】:
我正在开发一个实用程序,我需要检索集合级别安全组的列表,
TfsTeamProjectCollection projectCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(projectUri));
IGroupSecurityService gss = projectCollection.GetService<IGroupSecurityService>();
在IGroupSecurityService 中有一个ListApplicationGroups(projectUri) 方法返回该项目中的安全组,但我需要团队项目集合中的组,
我无法对 TFS 数据库进行 sql 查询,也不想使用 TFS 命令行工具。
【问题讨论】:
标签: tfs