bluepill-rust-blinky/.vscode/tasks.json

20 lines
296 B
JSON
Raw Normal View History

2024-02-27 22:55:50 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
2024-03-03 15:30:45 +00:00
"options": {
"cwd": "${workspaceFolder}/bluepill-rs"
},
2024-02-27 22:55:50 +00:00
"problemMatcher": [
"$rustc"
],
"group": "build",
2024-03-01 15:18:40 +00:00
"label": "cargo build",
"presentation": {
"reveal": "silent",
}
2024-02-27 22:55:50 +00:00
}
]
}