i using team foundation server
, plugged-in visual studio 2012
.
we have wide range of projects , solutions, need on our local machines.
is there way using team explorer
latest on solutions in different folders, in bulk, using single click (or close possible)?
development
project 1
get this
project 2
ignore this
project 3
get this
framework
project 1
ignore this
project 2
get this
...in 1 click.
for type of thing, use tf.exe
in command file on desktop. way have double-click .cmd file. has added bonus of being lot quicker firing vs.
@echo off set devenvpath2013=c:\program files\microsoft visual studio 12.0\common7\ide echo getting latest files... rem navigate to solution's mapped folder on local machine, e.g. me d:\socrates\development, , issue against relevant tfs folder solution ($/socrates/development) d: cd \socrates\development "%devenvpath2013%\tf.exe" $/socrates/development /recursive rem copy above 3 lines each separate solution want latest echo finished. echo.
btw, i'm guessing need edit devenvpath 11.0 instead of 12.0
so example, , assuming local folder mappings directly under c drive, want like:
@echo off set devenvpath2012=c:\program files\microsoft visual studio 11.0\common7\ide echo getting latest files... rem navigate to solution's mapped folder on local machine, e.g. me d:\socrates\development, , issue against relevant tfs folder solution ($/socrates/development) c: cd \development\project1 "%devenvpath2012%\tf.exe" $/development/project1 /recursive c: cd \development\project3 "%devenvpath2012%\tf.exe" $/development/project3 /recursive c: cd \framework\project2 "%devenvpath2012%\tf.exe" $/framework/project2 /recursive echo finished. echo.
Comments
Post a Comment