Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checkout from TFS with MSBuild

Tags:

msbuild

tfs

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?!

like image 481
mjallday Avatar asked Oct 22 '08 04:10

mjallday


1 Answers

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

like image 113
Scott Weinstein Avatar answered Oct 11 '22 19:10

Scott Weinstein