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?
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.
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"]
1
52
CoreField
enumeration (only for non-custom fields)If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With