Hi, I am trying to attach to a process for cpp and following some documentation I learned that I need to add "processId": "${command.pickProcess}"
But I get "Property processId is not allowed
"
and a green line. I have tried install and reinstall vscode and the cpp extension with no difference.
Here are my configs.
{
"version": "0.2.0",
"configurations": [
{
"name": "(lldb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceRoot}/a.out",
"args": ["<testa8t.txt"],
"stopAtEntry": false,
"cwd": "${workspaceRoot}",
"environment": [],
"externalConsole": true,
"osx": {
"MIMode": "lldb"
},
"processId": "${command.pickProcess}"
}
]
}