• TFS二次开发11——标签(Label)


    下图是在VS2010里创建Label的界面

     

    可以看出创建Label 需要如下参数:Name、Comment、Path、Version 。
    下面是代码实现:

    using Microsoft.TeamFoundation.Client;
    using Microsoft.TeamFoundation.VersionControl.Client;
    
    string tpcURL = "http://127.0.0.1:8080/";
    TfsTeamProjectCollection tpc = new TfsTeamProjectCollection(new Uri(tpcURL));
    VersionControlServer versionControl = tpc.GetService(typeof(VersionControlServer)) as VersionControlServer;
    
    //创建标签
    string labelName = "标签名称";
    string labelComment = "标签评论";
    string path = "$/CRM/Branches/WeiMovie";
    VersionSpec version = VersionSpec.Latest;
    var versionControlLabel = new VersionControlLabel(versionControl, labelName, versionControl.AuthorizedUser, path, labelComment);
    
    //Represents one or more files or folders on the local machine or in the repository.
    var itemSpec = new ItemSpec(path, RecursionType.Full);
    var labelItemSpec = new LabelItemSpec[1];
    labelItemSpec[0] = new LabelItemSpec(itemSpec, version, false);
    var lb = versionControl.CreateLabel(versionControlLabel, labelItemSpec, LabelChildOption.Merge);
    //查询标签
    VersionControlLabel[] lbls = versionControl.QueryLabels(null, null, null, true);//查询全部标签
    //VersionControlLabel[] lbls = version.QueryLabels(null, null, null, false, path, VersionSpec.Latest);// 查询指定路径的标签
    //删除标签
    versionControl.DeleteLabel(lbls[0].Name, lbls[0].Scope); 
  • 相关阅读:
    time模块
    time模块,计算时间差
    re模块
    Python之常用文件操作
    Django运行错误常见问题及解决方法1
    用JetBrains PyCharm 2017.2创建运行Django程序
    wsgi Python的WEB框架
    django模块安装环境变量
    Django
    DOM
  • 原文地址:https://www.cnblogs.com/xumingxiang/p/3135245.html
Copyright © 2020-2023  润新知