美文网首页
【vscode】使用

【vscode】使用

作者: 24c41111e47b | 来源:发表于2024-08-21 11:47 被阅读0次

Go开发 配置文件

{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch Package",
            "type": "go",
            "request": "launch",
            "mode": "auto",
            "program": "${workspaceFolder}/app", // 重点
            "env": {}, // // 重点
            "args": ["--config", "./config/debug/config.yaml"] // // 重点
        }
    ]
}

相关文章

网友评论

      本文标题:【vscode】使用

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