4

作为我们自动构建过程的一部分,我正在使用该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
4

1 回答 1

7

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

tf.exe add C:\Output\*.* /recursive /noignore /noprompt 
于 2015-06-11T10:20:21.350 回答