首页 > 学院 > 开发设计 > 正文

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

2019-11-17 03:17:27
字体:
来源:转载
供稿:网友

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

Posted on 2014-03-15 17:28 祥叔 阅读(...) 评论(...) 编辑 收藏

下图是在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); 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表