我正在尝试在 VSCode 中调试 Go 项目。我可以调试它,但应用程序正在内部 VSCode 终端中运行。我需要应用程序在外部控制台中运行。例如,我希望它在 cmd.exe 中运行。
// .vscode/launch.json
{
// 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": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}"
}
]
}
如何使调试会话打开外部控制台并在那里运行,而不是在 VSCode 的内部控制台中运行?
饮歌长啸
相关分类