My VSCode project is multi-root workspace. That is I have multiple workspaces each in separate directories, each has a .vscode folder.
I'm trying to build a workspace with dependencies between each module via build tasks.
I've tried to set dependsOn parameter for a task, but it yields a following error:
Couldn't resolve dependent task 'build FOO' in workspace folder 'BAR'
(here BAR build task depends on FOO)
Is there a better/correct/any way to achieve my goal?