Reputation: 2065
Is it possible to make a VSCode workspace automatically include all children subfolders as part of the workspace? I'm adding several folders in programmatically and would like them to automatically populate when I open the workspace.
I've spent the past hour trying to figure out how to accomplish this to no avail.
Upvotes: 0
Views: 470
Reputation: 3571
There is now a tool (I wrote it) that modifies a workspace file and updates the folders. Take a look at https://github.com/timhughes/workspace-manager and see if it does what you want. It also creates a VSCode task so you can press ctrl+p
and type task
to access it to refresh the file
Upvotes: 0