Stepagrus
Stepagrus

Reputation: 1559

How to disable auto hide the solution explorer (Visual Studio 2017)

How to disable auto hide solution explorer (Visual Studio 2017)?

Every time after launching the project, the solution explorer does autohide.

How disable it?

Upvotes: 18

Views: 8535

Answers (4)

Nicolai Schlenzig
Nicolai Schlenzig

Reputation: 882

In the "Help" menu of Visual Studio, you find "Manage Visual Studio Performance".

Inside this you find "Team Explorer - Home" in "Tool Windows" and if this is not set to "Use default behaviour", you will likely find the sidebar hidden both on startup and after debugging.

If you, like me, have your Solution Explorer and Team Explorer docked together, this is the behaviour you will see.

Upvotes: 31

Stepagrus
Stepagrus

Reputation: 1559

I resolve it problem.

Solution:

Delete the following directories:

%userfolder%\AppData\Local\Microsoft\VisualStudio
%userfolder%\AppData\Local\Microsoft\Visual Studio
%userfolder%\AppData\Local\Microsoft\VisualStudio Services
%userfolder%\AppData\Roaming\Microsoft\VisualStudio

Microsoft Visual Studio Enterprise 2017 (15.4.4)

P.S. devenv /Resetsettings does not help.

Upvotes: 4

Richard
Richard

Reputation: 109130

There is a separate window layout when debugging.

Just configure tool windows (like solution explorer) how you would like them while debugging. It will be remembered the next time you start debugging.

(Typically there are many tool windows – eg. locals, call stack – that only make sense while debugging, hence the separate layout.)

If a tool window is auto hiding, click on the pin icon in its title to stop it auto hiding. Do this before exiting the debugger to include in the debugging window layout.

Upvotes: 2

Rakshan Shetty K
Rakshan Shetty K

Reputation: 11

check this picture

click solution explorer and then right click on top of the solution explorer window and click dock.

Upvotes: -2

Related Questions