Added task

This commit is contained in:
MrRaute 2019-03-02 11:49:02 +01:00
parent acc2cb223d
commit 8bc59f1c40

26
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,26 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Run RMusicBot",
"command": "cargo run",
"args": [],
"problemMatcher": [
"$rustc"
],
"presentation": {
"clear": true
},
"linux": {
"options": {
"env": {
"RUST_BACKTRACE": "1",
}
}
}
},
]
}