1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
// 欲了解更多信息,请访问:https://go.microsoft.com/fwlink/?linkid=830387
// .vscode/launch.json
"version": "0.2.0",
"configurations": [
{
"name": "test-debug",
"type": "go",
"request": "launch",
"mode": "debug",
"showLog": true,
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/app/test/main.go",
"args": [
"${workspaceFolder}/app/test/test.conf"
]
},
{
"name": "test2-debug",
"type": "go",
"request": "launch",
"mode": "debug",
"cwd": "${workspaceFolder}/bin",
"program": "${workspaceFolder}/app/test2/main.go",
"args": [
"${workspaceFolder}/app/test2/test2.conf"
]
},
{
"name": "Launch Package",
"type": "go",
"request": "launch",
// "mode": "auto",
"mode": "debug",
"program": "${workspaceFolder}",
"showGlobalVariables": false
}
]
}
|