获取历史“文本”过去的工作项编辑
假设我在 TFS 中创建一个工作项。然后我进行更改并更新“历史记录”选项卡中的文本(然后保存)。
使用 TFS API,如何获取该文本?
我本以为它会位于工作项的 Revisions 集合中最后一项的 History 字符串中。 (因为要通过 API 设置字符串,您可以在普通工作项上使用“History”。)但是,在“Revisions”数组中,所有工作项都显示为具有历史记录为空。
关于如何获得这个字符串有什么想法吗?
Say I make a work item in TFS. Then I make a change and update the text in the History tab (then save).
Using the TFS API, how can I get that text?
I would have thought it would have been in the History string for last item in the Revisions collection on the work item. (Because to set the string via the API you can use History on a normal work item.) However, in the Revisions array, all the work items are showing up as having History empty.
Any ideas on how I can get this string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看此博客文章:http://blogs.msdn.com/b/aaronbjork/archive/2011/01/10/programmatically-reading-work-item-comments.aspx
这是一个简单的操作,但可能不太清楚首先,除非您发现需要循环浏览工作项的修订集合才能查看这些注释。
Check this blog post out: http://blogs.msdn.com/b/aaronbjork/archive/2011/01/10/programmatically-reading-work-item-comments.aspx
It’s a simple operation, but it might not be clear at first unless you discover that you need to loop through the collection of Revisions of the work item in order to view those comments.
您可以通过 aaronbjork 的链接获取任何基本 tfs 字段,并将其更改为使用
Field f = r .Fields.TryGetById(1);
或Field f = r.Fields["Title"]
1
52
CoreField
枚举(仅适用于非自定义字段)You can get any of the basic tfs fields via aaronbjork's link and change it to use
Field f = r.Fields.TryGetById(1);
orField f = r.Fields["Title"]
1
52
CoreField
enumeration (only for non-custom fields)