获取历史“文本”过去的工作项编辑

发布于 2024-11-02 07:43:48 字数 269 浏览 2 评论 0原文

假设我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人的夜不怕黑 2024-11-09 07:43:48

查看此博客文章: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.

瀞厅☆埖开 2024-11-09 07:43:48

您可以通过 aaronbjork 的链接获取任何基本 tfs 字段,并将其更改为使用

Field f = r .Fields.TryGetById(1);Field f = r.Fields["Title"]

  • title = 1
  • description = 52
  • 名称和 ID 列表位于 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); or Field f = r.Fields["Title"]

  • title = 1
  • description = 52
  • the list of names and Ids is in the CoreField enumeration (only for non-custom fields)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文