重建并保留旧的 .exe
我想从 cmd 构建不同风格的 C++ 项目 我将 msbuild 与 /p:Varable=Variable 一起使用,并为每种风格使用不同的文件夹 问题是每次我重建其中一种风格时,最后构建的风格的 .exe 文件都会被删除 因此,有一种方法可以使用 msbuil 进行重建并保留其他 .exe 文件 谢谢
I want to build different flavors of my c++ project from the cmd
I'm using msbuild with /p:Varable=Variable and using different folders for each flavor
the problem is every time I rebuild one of the flavors, the .exe file of the last flavor built is erased
So , there is way to rebuild with msbuil keeping the othr .exe files
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
构建可执行文件后,将其从项目目录中复制出来。
msbuild 只是试图保持构建中的完整性:它不知道您正在以这种方式使用它。
Copy the executable out of your project directory when you have built it.
msbuild is only trying to maintain integrity within a build: it doesn't know that you are using it in this fashion.