This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-variable-monitor/.vscode/tasks.json
2023-11-16 13:17:49 +08:00

33 lines
885 B
JSON

{
"tasks": [
{
"label": "centos7",
"type": "shell",
"command": "./run.sh",
"presentation": {
"echo": true,
"clear": true,
"group": "vm"
},
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
]
}
],
"version": "2.0.0"
}