1

Given a changeset number of Visual Studio Team Foundation System 2008, is there an easy way to find out which files in my project/solution were edited in the changeset?

Vivian River
  • 31,198
  • 62
  • 198
  • 313
  • same as this one, the answers are more detailed in steps: http://stackoverflow.com/questions/2196754/how-can-i-open-a-single-changeset-in-tfs-from-within-visual-studio – schrodinger's code Oct 01 '10 at 05:25

1 Answers1

3

Right-click on a source file that's in the changeset, and select View History. The history window will open, and show you all the changesets for that file. Double-click on a changeset, and you will see the list of items changed in that changeset.

Cylon Cat
  • 7,111
  • 2
  • 25
  • 33
  • 1
    +1...or, if you don't know any of the files that were changed, you can do "View History" on the base project node in the Source Control Explorer and find your changeset there. – Nate Dudek Jun 14 '10 at 14:14