To setup debugging for Dlang programs on Windows with VsCode follow these steps:
- make sure you have the D Programming Language (code-d) (VsCode extension) installed
- make sure you have the C/C++ extension pack (VsCode extension) installed
- create a
.vscode
folder at the root of your DLang project - copy the
launch.json
andtasks.json
into it - in the
launch.json
at line:"program": "./my-app.exe",
changemy-app.exe
to your executable name (look in thedub.json
under name). - click on the debug tab in VsCode, then click on the debug button at the top (or press F5)
Q: When I start debugging, I get the following error popup: Configured debug type 'cppvsdbg' is not supported.
A: Make sure you have the C/C++ extension pack installed. If it is already installed, try reinstalling it.
good job!