Files
rnpay/.vscode/tasks.json
2026-06-01 22:10:00 +08:00

28 lines
659 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build walletman",
"type": "shell",
"command": "go",
"args": [
"build",
"-buildvcs=false",
"-o",
"${workspaceFolder}/servers/walletman/bin/server",
"./cmd/server"
],
"options": {
"cwd": "${workspaceFolder}/servers/walletman"
},
"problemMatcher": [
"$go"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}