Visual Studio,配置属性->调试
我从某个项目运行我的程序,使用 “配置属性 -> 调试
”
当我按 F5 时,在开始运行程序之前它会编译项目...我不想编译项目,但只是开始执行我的内容定义在 “配置属性->调试”。 (程序可执行文件存在)
我该怎么做? 谢谢
I run my program from some project ,using
"Configuration Properties -> Debugging
"
When I press F5,before starting to run the program it compiles the project...I don`t want to compile the project,but just start execution of what I defined in the
"Configuration Properties -> Debugging".
(The program executable exists)
How can I do it?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
控制它的选项并不与项目直接关联;它位于常规 Visual Studio 选项下。
选择菜单项
Tools\Options
。然后转到项目和解决方案\构建并运行
。有一个名为“运行时,当项目过期时:
”的选项。您可以在“始终构建”、“从不构建”、“提示构建”之间进行选择。The option that controls this is not directly associated with a project; it is under the general Visual Studio options.
Choose the menu item
Tools\Options
. Then go toProjects and Solutions\Build and Run
. There is an option named"On Run, when projects are out of date:
. You can choose between "Always build", "Never build", "Prompt to build".我不熟悉构建配置,但如果您想调试您构建的 .exe,您可以启动它并使用 Visual Studio 的附加到进程(工具 -> 附加到进程)将自己绑定到该 .exe 并调试它。
I am not familiar with build configuration, but if you want to debug a .exe that you built, you can start it and use Visual Studio's Attach to Process ( Tools -> Attach to Process) to bind yourself to that .exe and debug it.