VS Code自定义运行配置D.



是否有一种方法可以添加自定义运行配置,从而在终端中运行当前文件?

目前在Visual Studio Code中没有用于调试.d文件的扩展名。我仍然可以在终端中使用dmd手动输入编译和运行命令,尽管这很繁琐,而且这些命令可能会被遗忘。我发现使用任务可能会更有效地做到这一点,但我还没有找到足够的例子来说明如何实现它。

我用

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "code-d",
"request": "launch",
"name": "Debug D project",
"cwd": "${workspaceFolder}",
"program": "./darc-test-library"
}
]
}

with CodeLLDB.

相关内容

  • 没有找到相关文章

最新更新