美文网首页
vscode launch.json 调试配置

vscode launch.json 调试配置

作者: 发条家的橙子 | 来源:发表于2022-05-13 14:44 被阅读0次
    {
        // 使用 IntelliSense 了解相关属性。 
        // 悬停以查看现有属性的描述。
        // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
        "version": "0.2.0",
        "configurations": [
            {
                "name": "Launch Package",
                "type": "go",
                "request": "launch",
                "mode": "auto",
                "program": "${workspaceFolder}\\main.go",
                "args": [
                    "server"
                ]
            }
        ]
    }
    

    相关文章

      网友评论

          本文标题:vscode launch.json 调试配置

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