arduino/.vscode/tasks.json
2024-12-07 12:56:21 +02:00

25 lines
706 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Download Doc Generators",
"type": "shell",
"command": "./download-mdtopdf.sh",
"windows":{
"type": "shell",
"command": "./download-mdtopdf.ps1"
}
},
{
"label": "Run Doc Generators",
"type": "process",
"command": "./bin/go-mdtopdf-helper",
"windows":{
"type": "process",
"command": "./bin/go-mdtopdf-helper.exe"
}
}
]
}