TF.EXE命令不包括可执行(* .DLL)文件

时间:2015-06-11 10:20:21

标签: visual-studio tfs tf-cli

我使用TF.EXE实用程序自动将一些构建输出移动到TFS中,作为我们自动构建过程的一部分。

这是命令行:

tf.exe add C:\Output\*.* /recursive /noprompt
tf.exe checkin C:\Output\*.* /recursive /noprompt

除了其中一个输出文件具有.dll扩展名的皱纹之外,这一切都很有效。最初这个文件会按照您的预期被选中,然后在最后打印出这条有用的信息:

Items matching the following exclusions were ignored: *.dll

1 个答案:

答案 0 :(得分:5)

我发现解决方案是在/noignore命令中包含add开关,如下所示:

tf.exe add C:\Output\*.* /recursive /noignore /noprompt