在发布模式下构建项目而不更改构建模式?
我有一个包含很多项目的解决方案,默认构建配置管理器是调试。
有时我只需要在发布模式下构建一个项目,因此它迫使我将解决方案构建模式更改为发布,这会消耗长时间来更改它,并在构建后切换回来到调试模式。
问题是有什么办法可以快速实现这个目的而不需要执行上述步骤吗?
谢谢。
I have a solution with a lot of project, Default build configuration manager is Debug.
Some times i need build only one project in release mode, So it force me to change solution build mode to release that consume long time to change it and after build to switch back to debug mode.
Question is any way to achieve this purpose quickly without doing this above stages?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看批量构建菜单。您可以选择一个特定项目并只进行该构建。
Look into the batch build menu. You can select a particular project and have only that one build.
使用命令行。
使用
msbuild
传入项目文件并将配置属性设置为release。在 Visual Studio 命令提示符窗口中:
Use the command line.
Use
msbuild
passing in the project file and set the configuration property to release.In a Visual Studio Command Prompt window: