Type: Debugger
for a common launch configuration:
{
"name": "(msvc) Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/out.exe",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
}
is there any plan to add support for environment variable definitions file (similar concept in python debugger) aside from the current environment key-value list?
Type: Debugger
for a common launch configuration:
{ "name": "(msvc) Launch", "type": "cppvsdbg", "request": "launch", "program": "${workspaceFolder}/out.exe", "args": [], "stopAtEntry": true, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false }is there any plan to add support for environment variable definitions file (similar concept in python debugger) aside from the current
environmentkey-value list?