有没有办法让 VS2010 的 devenv.exe /out 开关替换现有的日志文件?
使用 Visual Studio 2010 devenv 命令行进行构建时,/out 开关将追加到文件(如果存在)。
有没有办法强制它覆盖文件内容?
我试图避免在自动构建之前需要额外的预构建步骤来删除文件。
When building using the Visual Studio 2010 devenv command line, the /out switch will append to the file if it exists.
Is there a way to force it to overwrite the file contents instead?
I'm trying to avoid needing an additional pre-build step to delete the file before automated builds.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了一些问题,但官方 MS 文档没有提供解决方案。所以我想你的问题的答案是否定的。
为什么要避免预构建步骤?
I had the some problem, but the official MS documentation does not offer a solution for this. So I guess the answer to your question would be no.
Why do you want to avoid a pre-build step?
您是否尝试过/Rebuild?
Have you tried /Rebuild instead?