views:

26

answers:

1

How do you get a list of all new files added to a visual studio project and checked in to TFS? I've tried using TFS sidekicks and view history, but they only show changesets which you have to open up to see the details. I'm simply after a list of new files in a particular branch. Thanks

+1  A: 

Powershell version.

Get-TfsItemHistory "$/Project Name" -r -all -version D06/01/2010~ | Select -Expand Changes | Where {$_.ChangeType.Tostring().contains("Add")} | select-tfsitem | fl Path

I believe this will require the TFS Power Tools to work.

Robaticus
awesome, thanks. I just had to add -server to the options
TheImirOfGroofunkistan