我想使用msbuild
自动添加一组文件<Exec Command="svn add %(SVNFiles.Fullpath) --quiet" IgnoreExitCode="true" />
这个msbuild-task的问题在于它不够安静。 -q
选项会删除部分但不是全部的消息。
输出窗口仍然显示已添加的每个文件的此消息:
1> svn: E200009: Could not add all targets because some targets are already versioned
1> svn: E200009: Illegal target for the requested operation
我怎样才能让svn完全安静?
(VS2010 express和Tortoise SVN)
答案 0 :(得分:2)
尝试在命令末尾添加> NUL 2>&1
;不是MSBuild相关,而是基本的Windows批量重定向。