我使用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
答案 0 :(得分:5)
我发现解决方案是在/noignore
命令中包含add
开关,如下所示:
tf.exe add C:\Output\*.* /recursive /noignore /noprompt