VS2010: how to remove/hide the "External Dependencies" folder in Solution Explorer

Visual StudioVisual Studio-2010

Visual Studio Problem Overview


In VS2010 they added to all projects a virtual directory called "External Dependencies":

alt text

It really bothers me especially because if there is a normal folder named "Apple" and one named "Deep" it will be in between the two, and also the information it gives is, in my opinion, completely useless.


Is there any way to remove or hide it?

Visual Studio Solutions


Solution 1 - Visual Studio

Don't know if you figured this out yourself but looking at this page you can disable it in the Options dialog (from the Tools menu).

On the right side panel expand the Text Editor section, then expand C/C++ and then click on Advanced. Set the Disable External Dependencies Folder to True and restart Visual Studio.

As mentioned by Michael in the comments, apparently you don't need to restart Visual Studio but can just close and re-open the solution to see the effects.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionThomas BoniniView Question on Stackoverflow
Solution 1 - Visual StudioSamuelView Answer on Stackoverflow