TFS存储库模块内的标签总数

时间:2016-08-02 06:14:20

标签: c# powershell tfs labels

我需要找出Team Foundation存储库中集合的每个模块中有多少个标签。 我正在使用TFS 2013。 我知道我们可以从Visual Studio中获取它。但我们需要一个脚本,它将标签的数量作为输出。 任何人都可以帮助我获取C#或Powershell代码来获得相同的内容吗?

TIA

1 个答案:

答案 0 :(得分:1)

您可以使用.NET客户端库来获取此信息:.NET client libraries for Visual Studio Team Services (and TFS)

代码示例:

using System;
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.VersionControl.Client;

namespace GetLabels
{
    class Program
    {
        static void Main(string[] args)
        {
            string tfscollection = "http://xxx:8080/tfs/defaultcollection";
            TfsTeamProjectCollection ttpc = new TfsTeamProjectCollection(new Uri(tfscollection));
            VersionControlServer vcs = ttpc.GetService<VersionControlServer>();
            string labelname = null;
            string labelscope = "$/";
            string owner = null;
            bool includeitem = false;
            int labelnumber;
            VersionControlLabel[] labels = vcs.QueryLabels(labelname,labelscope,owner,includeitem);
            labelnumber = labels.Length;
            Console.WriteLine(labelnumber);
            Console.ReadLine();
        }
    }
}