Last active
April 28, 2017 09:47
-
-
Save nordinrahman/87aa21b397e68432053b6ae8aaf5bf90 to your computer and use it in GitHub Desktop.
Add all packages files to TFS pending changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
` from batch file | |
for /R packages %%f in (*.*) do "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe" vc add %%f | |
` from command line | |
for /R packages %f in (*.*) do "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\TF.exe" vc add %f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment