MacroBoard-rs/.vscode/tasks.json

19 lines
514 B
JSON
Raw Permalink Normal View History

2019-11-22 18:02:27 +00:00
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run Gui",
"type": "shell",
2022-07-20 07:23:31 +00:00
"command": "cargo run --bin macroboard_gui",
2019-11-22 18:02:27 +00:00
"problemMatcher": []
},
{
"label": "Run Service",
"type": "shell",
2022-07-20 07:23:31 +00:00
"command": "cargo run --bin macroboard_service",
2019-11-22 18:02:27 +00:00
"problemMatcher": []
}
]
}