How to display Specific Revision of workitem  
Author Message
Pramod_SN





PostPosted: Team Foundation Server - Work Item Tracking, How to display Specific Revision of workitem Top

Hi All,

How can we display specific revision of Work Item on Team explorer

Like ,display all the field values with respect to specific WI Rev.


Thanks in advance
Pramod



Visual Studio Team System15  
 
 
Smitha S Saligrama





PostPosted: Team Foundation Server - Work Item Tracking, How to display Specific Revision of workitem Top

Hello,

Currently we don't support getting a work item of specific revision in Team Explorer. However you can look at the History Tab to look at the field values that changes during each revision.

You can also get a work item of specific revision using Work Item Object Model

Code sample,

WorkItemStore store = new WorkItemStore("server_url");

Workitem wi = store.GetWorkItem(id, rev);



 
 
Pramod_SN





PostPosted: Team Foundation Server - Work Item Tracking, How to display Specific Revision of workitem Top

Thanks Smitha.