gpt4 book ai didi

c# - 如何获取 TFS 集合中所有项目的名称?

转载 作者:行者123 更新时间:2023-11-30 15:34:28 24 4
gpt4 key购买 nike

关于如何从 TFS 获取集合,请参阅 here

请引用here更多细节。这是有关 TFS 内容的最佳资源之一。

最佳答案

集合 guid 被传入,列表返回该特定集合中所有项目的名称。

    public IList<string> GetProjectsFormCollection(Guid collectionId)
{
ICommonStructureService structureService = null;
try
{
TfsTeamProjectCollection teamProjectCollection =
_configurationServer.GetTeamProjectCollection(collectionId);
teamProjectCollection.Authenticate();
structureService =
(ICommonStructureService)teamProjectCollection.GetService(typeof(ICommonStructureService));
}
catch (Exception e)
{
ApplicationLogger.Log(e);
}

var projectInfoList = new List<ProjectInfo>(structureService.ListAllProjects());
IEnumerable<string> data = projectInfoList.Select(proj => proj.Name);
List<string> list = data.ToList();
return list;
}

关于c# - 如何获取 TFS 集合中所有项目的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16101636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com