Reputation: 565
In Visual Studio, one can create "Solution Folders" to group different .NET projects into a virtual folder. Is there any equivalent solution for VS Code?
I've tried installing the extension vscode-solution-explorer, but it doesn't support virtual folders.
Upvotes: 5
Views: 3633
Reputation: 116
The extension vscode-solution-explorer
supports virtual folder. Here are the steps:
Search and install (extension id):
fernandoescolar.vscode-solution-explorer
Looking in sidebar for last icon named "Solution":
Click right button in file .sln
and choice Create folder:
Choice name and press enter:
Drag yours projects for solution folder.
Upvotes: 9
Reputation: 8543
The extension that you mentioned seems to work.
Load an existing solution, right click in the solution file > "create new folder" . A virtual folder will be created. Then, add an existing project to solution and move it to the virtual folder.
Upvotes: 1