Created
September 16, 2019 07:15
-
-
Save bsed/662b7e615f768f80154a992d226f6ee9 to your computer and use it in GitHub Desktop.
.vscode_rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"type": "shell", | |
"label": "cargo test build", | |
"command": "cargo", | |
"args": [ | |
"test", | |
"--no-run" | |
], | |
"problemMatcher": [ | |
"$rustc" | |
] | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo build", | |
"command": "cargo", | |
"args": [ | |
"build" | |
], | |
"problemMatcher": [ | |
"$rustc", | |
], | |
"presentation": { | |
"echo": true, | |
"reveal": "silent", | |
"focus": false, | |
"panel": "shared", | |
"showReuseMessage": true, | |
"clear": true | |
}, | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo clean", | |
"command": "cargo", | |
"args": [ | |
"clean" | |
], | |
"problemMatcher": [] | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo run", | |
"command": "cargo", | |
"args": [ | |
"run" | |
], | |
"problemMatcher": [ | |
"$rustc" | |
] | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo test", | |
"command": "cargo", | |
"args": [ | |
"test", | |
"--no-run", | |
"--lib" | |
], | |
"problemMatcher": [ | |
"$rustc" | |
] | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo build ws", | |
"command": "cargo", | |
"args": [ | |
"build", | |
], | |
"problemMatcher": [ | |
"$rustc" | |
], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
}, | |
{ | |
"type": "shell", | |
"label": "cargo doc", | |
"command": "cargo doc --open", | |
"problemMatcher": [ | |
"$rustc" | |
] | |
}, | |
{ | |
"type": "npm", | |
"script": "release", | |
"path": "ui/", | |
"group": { | |
"kind": "test", | |
"isDefault": true | |
} | |
}, | |
{ | |
"type": "npm", | |
"script": "releaseall", | |
"path": "ui/", | |
"problemMatcher": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment