美文网首页
Vscode Golang 项目调试

Vscode Golang 项目调试

作者: 小虫跳跳 | 来源:发表于2022-09-08 15:53 被阅读0次
    {
        "version": "0.2.0",
        "configurations": [
            {
                "name": "Launch System",
                "type": "go",
                "request": "launch",
                "mode": "debug",
                "program": "${workspaceRoot}/cmd/system_services/"
            } 
        ]
    }
    

    其中program填写main.go入口路径,添加到.vscode/launch.js就可以按F5单步调试代码了。

    相关文章

      网友评论

          本文标题:Vscode Golang 项目调试

          本文链接:https://www.haomeiwen.com/subject/qhsonrtx.html