Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When debugging a program using Visual Studio you are given the option to Enable the Visual Studio hosting process. What is this point of this option and what effect does it have?

share|improve this question

closed as not a real question by random, Jim O'Neil, Alessandro Minoccheri, Abhijit, Maerlyn Dec 4 '12 at 8:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

up vote 17 down vote accepted

The MSDN library doesn't give very good info on the "hosting process". The last two features listed in Eric's link are actually problems induced by the feature. There's another one that you're bound to run into sooner or later: it uses a different app.config file. The active one is named yourapp.vshost.exe.config. Watch out for this when you make manual changes to the file.

Another feature it supports that's very visible when you debug your app but isn't mentioned anywhere is what happens to the output produced by Console.Write(). In a non-console mode app, it gets redirected to the IDE's Output window. Very useful.

The term "hosting" refers to a feature of the CLR, it can be "hosted". Examples of custom CLR hosts are SQL Server and ASP.NET. Hosting allows one to configure the CLR before it gets started. One primary use of this is configuring the primary AppDomain and setting up custom security policies. Which is exactly what the hosting process is doing.

A good example of a custom CLR host is available in this question.

Long story short: in debug mode you are running with a customized version of the CLR, one that improves the debugging experience.

share|improve this answer
I have a habit of disabling this feature on every new project. I've run into strange issues when working with C++/CLI WinForms Designer, that didn't occur with this feature disabled. – surfen Jul 13 '12 at 11:12
That's very unlikely to be relevant, the C++ IDE doesn't use a hosting process nor is it used in design mode. – Hans Passant Dec 4 '12 at 2:20

From MSDN:

The Visual Studio hosting process improves debugger performance and enables new debugger features, such as partial-trust debugging and design-time expression evaluation

share|improve this answer

It's explained here in MSDN: Debugging and the Hosting Process.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.