Checkout from TFS with MSBuild

后端 未结 2 531
-上瘾入骨i
-上瘾入骨i 2021-01-04 04:13

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 th

相关标签:
2条回答
  • 2021-01-04 04:38

    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

    0 讨论(0)
  • 2021-01-04 04:40

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

    0 讨论(0)
提交回复
热议问题