I use the TFS client API to try and request an instance of TFS 2010. I need to do the following
- For a specific team project, say, Project A
- Get a list of the history of the last checks made in this project (for example, the last 50 or the list for the last day).
You can then iterate over this list and get some metadata for the items (file and folder names ideally)
I think I need to use the QueryXXX methods in the VersionControlServer class, but I cannot find useful or clear examples of how to use this.
I saw that there is a GetLastestChangesetId method, but it does not look like it can be attached to a specific project or directory.
Abakt source share