I have multiple go services like Search, Image Server, GraphQL API and Rest API which I run with a "launch" configuration entry in the multi-root workspace. For instance :
{
"name": "Service",
"type":"go",
"request": "launch",
"program": "${workspaceFolder:service}/src/service.go",
"mode": "debug",
"cwd": "${workspaceFolder:service}",
"output": "service.exe",
"env" : {
"GOPATH": "${workspaceFolder:service};${workspaceFolder:commons}"
},
"args": [
"-config", "service.conf",
"-debug"
],
"showLog": true,
},
I have created a compound task of these services with "configurations": ["Search", "Image Server", "GraphQL", "rAPI"]
I have the following issues :
Screenshot with the missing debug instances
I am using the go extension in vscode 1.27.2 (user setup). I've reinstalled vscode and nothing changed.
Thanks for any ideas, I don't know how I should search for this issue on github.