DCSIMG
Custom Controls,TFS API - SRL Group

SRL Group

This blog is about Team System, QA and Development methodologies and more...

VSTS Resources

Team System Bloggers

Browse by Tags

All Tags » Custom Controls » TFS API (RSS)
How To Get A File History In TFS Source Control Using Code
A project I am doing these days requires me to get file history changesets using the API . Sounds like a simple task right? Apparently there is not a lot of reference to that in Google, so after almost throwing my computer out of the window (More than once I most admit) I found the answer. Add the following references to your using list: using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.VersionControl.Client; using System.Collections; using System.Windows.Forms; The example function...