I\'d like to use PowerShell to automate check-out and check-in of edited .csproj files to TFS. I only need to change single files to pending and check those in.
Does an
You can checkin with the New-TfsChangeSet cmdlet and checkout with the Add-TfsPendingChange -Edit cmdlet.
New-TfsChangeSet
Add-TfsPendingChange -Edit
To get the cmdlets you have to have the Microsoft Team Foundation Server 2010 Power Tools installed.