我有一些代码,我尝试使用TFS API在某些工作项上设置一些标记:
foreach (KeyValuePair<string, WorkItem> kvp in dict)
{
kvp.Value.Tags = "test";
}
但是当我运行上述内容时,我得到了:
{"TF26194: The value for the field 'Tags' cannot be changed. "}
但也许他们只是读书?
或者我是否需要升级服务器以使用2013更新2: http://blogs.msdn.com/b/bharry/archive/2014/02/05/vs-tfs-2013-2-update-2-ctp-released.aspx
答案 0 :(得分:2)
为了编辑API中的标签,您至少需要TFS 2013 Update 2.