是否可以防止VS2010杀死WebDev.WebServer进程?
自从我开始使用 VS 2010 以来,我注意到当我停止调试器时,它也会杀死开发 Web 服务器。在 VS 2008 中,我经常在不附加调试器的情况下工作。 2010年有可能做到这一点吗?
Since I've starting using VS 2010 I've noticed that whne I stop the debugger it also kills the development web server. In VS 2008 I would regularly work without the debugger attached. Is it possible to do this in 2010?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,如果您使用 F5 启动 Visual Studio,则不可能。它将 Web 服务器视为被调试进程,并将在调试会话结束时终止它。
不过,您可以在不进行调试的情况下启动该进程,并通过以下方式继续使用 Web 服务器较长一段时间: Ctrl+F5
No it's not possible if you start Visual Studio with F5. It considers the web server the debugee process and will kill it at the end of the debugging session.
You can however start the process without debugging and continue to work with the web server for an extended period of time via: Ctrl+F5
是的,只是不要使用开发 Web 服务器;)
Yes, just do not use the development web server ;)