免责声明 : 这不是推荐的方法 ,我同意其他 观点 ,您应将 服务 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。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)