rustray/.vscode/tasks.json
2019-03-14 19:43:23 +01:00

15 lines
354 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Cargo run",
"type": "shell",
"command": "cargo run",
"problemMatcher": [
"$rustc"
],
}
]
}