vote up 3 vote down star

What's the easiest way to checkout a file from our TFS with MSBUILD.

From what I can see it's to shell out to TF.EXE and manually call the checkout command. Is there really no built in command?!

flag

64% accept rate
what's wrong with shelling out to TF.exe? – Cheeso Feb 27 at 6:13
nothing. but i was hoping for greater integration between msbuild and tfs when i asked this. – abigblackman Mar 3 at 5:47

2 Answers

vote up 3 vote down check

There really is no built in command. Even worse, the tf checkout command only accepts a single filespec.

The recently released MSBuildExtensionPack has some msbuild commands for TFS, but no perf gain there. Under the hood, they shell out to tf.exe

link|flag
Thanks for confirming that. – abigblackman Oct 22 '08 at 4:33
vote up 2 vote down

the 'itemspec' can be a list of space-delimited items and can use wildcards.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.