C# 窗口应用程序:“MyApplication.vshost.exe” 连续出现任务管理器

发布于 2024-07-29 17:53:04 字数 218 浏览 1 评论 0原文

在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晚风撩人 2024-08-05 17:53:04

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 the Enable the Visual Studio hosting process checkbox.

最笨的告白 2024-08-05 17:53:04

您可以在 MSDN 上阅读有关 vshost.exe 的更多信息。

托管进程是 Visual Studio 2005 中的一项功能,可提高调试性能、启用部分信任调试以及启用设计时表达式计算。 托管进程文件的文件名中包含 vshost,并放置在项目的输出文件夹中。

You can read more about vshost.exe on MSDN.

The hosting process is a feature in Visual Studio 2005 that improves debugging performance, enables partial trust debugging, and enables design time expression evaluation. The hosting process files contain vshost in the file name and are placed in the output folder of your project.

梦里的微风 2024-08-05 17:53:04

您可以禁用此功能。 右键单击该项目,选择属性并转到“调试”选项卡。 您可以在其中取消选中“启用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文