C# 窗口应用程序:“MyApplication.vshost.exe” 连续出现任务管理器
在我的 C# Windows 应用程序中,每当我在 Visual Studio 2008 中打开解决方案时,“MyApplication.vshost.exe”始终在窗口任务管理器中可见 -> 处理选项卡。
当我试图杀死它时,它再次出现在“进程”选项卡中。
我没有得到 vshost.exe 创建的内容? 为什么它没有从任务管理器中删除? 我们怎样才能去除它呢?
In my c# windows application whenever I open my solution in visual studio 2008, than "MyApplication.vshost.exe" is always visible at window task manager--> Process tab.
When i tried to kill that, it again reappear at Process tab.
I am not getting for what vshost.exe created? and why its not getting removed from task manager?
How can we remove it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
vshost.exe 功能是在 VS2005 中引入的。
其目的主要是为了更快地启动调试 - 基本上已经有一个正在运行框架的进程,准备好在您需要时立即加载您的应用程序。
请参阅这篇 MSDN 文章和此博文了解更多信息。
来停止 *.vshost.exe 的生成
您可以通过右键单击
MyProject
-> 。属性
->调试
选项卡,然后取消选中启用 Visual Studio 托管进程
复选框。The vshost.exe feature was introduced with VS2005.
The purpose of it is mostly to make debugging launch quicker - basically there's already a process with the framework running, just ready to load your application as soon as you want it to.
See this MSDN article and this blog post for more information.
You can stop the *.vshost.exe from spawning by -
Right clicking
MyProject
->Properties
->Debug
tab, and unchecking theEnable the Visual Studio hosting process
checkbox.您可以在 MSDN 上阅读有关 vshost.exe 的更多信息。
You can read more about vshost.exe on MSDN.
您可以禁用此功能。 右键单击该项目,选择属性并转到“调试”选项卡。 您可以在其中取消选中“启用 Visual Studio 托管进程”复选框
You can disable this. Right click on the project, select properties and go to the Debug tab. In there you can uncheck the "Enable the Visual Studio hosting process" check box