我的launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${workspaceRoot}/app",
"env": {
"GO_ENV":"dev"
},
"args": [],
"showLog": true
}
]
}
我希望当我运行名为" debug"的调试二进制文件时,它出现在" app"夹。如何指定不同的输出路径?
答案 0 :(得分:0)
尝试使用outDir
设置进行指定。