2018-02-15 15:36:18 +00:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Test all",
|
|
|
|
"command": "cargo",
|
|
|
|
"args": [
|
|
|
|
"test",
|
|
|
|
"--all",
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "test"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Run CLI",
|
|
|
|
"command": "cargo",
|
|
|
|
"args": [
|
2018-03-12 22:18:50 +00:00
|
|
|
"debugcli",
|
2018-02-15 15:36:18 +00:00
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "test"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Build CLI",
|
|
|
|
"command": "cargo",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"-p",
|
|
|
|
"mentat_cli",
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "build"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "shell",
|
|
|
|
"label": "Build Mentat",
|
|
|
|
"command": "cargo",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
],
|
|
|
|
"problemMatcher": [
|
|
|
|
"$rustc"
|
|
|
|
],
|
|
|
|
"group": "build"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|