This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
aprs-trains/.vscode/tasks.json
2022-12-19 15:13:07 -05:00

29 lines
384 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
"problemMatcher": [
"$rustc"
],
"group": "build",
"label": "rust: cargo build"
},
{
"type": "cargo",
"command": "run",
"problemMatcher": [
"$rustc"
],
"label": "rust: cargo run",
"args": [
"--",
"-c",
"VA3UJF-1",
"-p",
"23728"
]
}
]
}