Hi
I am trying to get some information out of TFS. Specifically, for a given user, I would like to get a listing of all changesets with their date and all changed items (bonus points for inline diff). This listing will be used to run a diff for all modified files.
Something along the lines of:
tf history /user:USERNAME
// pump changeset number into
tf changeset 'changeset number'
// now get the items, and pump into
tf diff 'item' /version:C122~C123
I believe I could use TFS Reporting for this, but I do not have access permission to the reporting server :(
I could run this in C# with some regex, but I'll rather avoid that.
Thanks :)