Templates/ESP32_Project/.vscode/tasks.json

63 lines
1.6 KiB
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"detail": "Build project",
"type": "shell",
"command": "pio",
"args": [
"run"
],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Build and Upload",
"detail": "Build project and Upload",
"type": "shell",
"command": "pio",
"args": [
"run",
"--target",
"upload"
],
"group": "build",
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
},
{
"label": "Clean",
"detail": "Clean build",
"type": "shell",
"command": "pio",
"args": [
"run",
"--target",
"clean"
],
"group": "build",
"presentation": {
"echo": false,
"reveal": "never",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
}
}
]
}