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

17 lines
230 B
JSON
Raw Normal View History

2024-02-27 22:55:50 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"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
}
]
}