code-d
code-d copied to clipboard
Code-D does not expand Dub variables in `launch.json`
My dub.json contains "targetPath": "bin/$BUILD_TYPE-$PLATFORM-$ARCH". Trying to simply launch debugger in VS Code shows the following error:
launch.json contents:
{
"version": "0.2.0",
"configurations": [
{
"type": "code-d",
"request": "launch",
"dubBuild": true,
"name": "Build & Debug DUB project",
"cwd": "${command:dubWorkingDirectory}",
"program": "${command:dubTarget}",
"args": []
}
]
}