美文网首页
vscode无法运行go程序缺配置文件

vscode无法运行go程序缺配置文件

作者: bug去无踪 | 来源:发表于2021-12-27 17:46 被阅读0次
    image.png

    Failed to launch:could not launch process:not an executable file

    在项目下新建 .vscode目录,添加launch.json文件。文件内容如下:
    {
    // 使用 IntelliSense 了解相关属性。
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
    {
    "name": "Launch Package",
    "type": "go",
    "request": "launch",
    "mode": "auto",
    "program": "cmd/main.go",//main函数入口,相对于项目的路径
    "env": {"APP_CONF_PATH":"../config/app_config.json"} // APP_CONF_PATH为环境变量名字,配置文件路径,相对于项目的路径
    }
    ]
    }

    相关文章

      网友评论

          本文标题:vscode无法运行go程序缺配置文件

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