Files
xc8-picamp/.vscode/tasks.json
2023-11-23 23:04:00 +01:00

27 lines
724 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"windows": {
"command": ".\\Build.cmd",
"args": [
"16f84" // Update this to Chip you're targeting.
]
}
},
{
"label": "Build Samples",
"type": "shell",
"windows": {
"command": ".\\Build-Samples",
"args": [
"16f84" // Update this to Chip you're targeting.
]
}
}
]
}