带GO的Visual Studio代码-多个主声明(启动设置)

带GO的Visual Studio代码-多个主声明(启动设置),第1张

带GO的Visual Studio代码-多个主声明(启动设置)

免责声明这不是推荐的方法 ,我同意其他 观点 ,您应将 服务 A和B 分开到不同的目录中。

回答您的问题:要启动特定文件,请使用以下配置进行仿真

go run current-file

{    "version": "0.2.0",    "configurations": [        { "name": "Run current file", "type": "go", "request": "launch", "mode": "exec", "program": "full-path-to-go.exe", "args": ["run", "${file}"], "showLog": true        }    ]}

模式

exec
用于启动属性中给定的预构建二进制文件
program
(您必须指定
go
二进制文件的完整路径)。然后作为参数,只需将
run
和filename(
${file}
)添加到property即可
args



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5427925.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存