1

All instructions to disable Visual Studio hosting process I've found says as follows:

  1. Open a project in Visual Studio.
  2. On the Project menu, click Properties.
  3. Click the Debug tab.
  4. Clear the Enable the Visual Studio hosting process check box.

I believe this is for VS 2005 because in my VS 2008 C++ project there is no such tab as "Debug", but rather "Debugging" and there is no check box there for disabling the hosting process.

So my question is, how do I disable the hosting process on VS 2008?

Thanks!

1 Answers1

4

Those instructions are for VS 2008, but they're only for VB / C# projects. As far as I'm aware, VS doesn't use the hosting service for C++ projects.

jim0thy
  • 2,095
  • 1
  • 18
  • 27
  • 1
    The instructions are specifically for C# projects only. The only way I know to disable it for VB.NET projects is to manually add UseVSHostingProcess set to false in the vbproj file. – Scott Lerch Jan 15 '12 at 23:54