42 lines
845 B
JSON
42 lines
845 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "swift build",
|
|
"type": "shell",
|
|
"command": "swift build"
|
|
},
|
|
{
|
|
"label": "swift test",
|
|
"type": "shell",
|
|
"command": "swift test"
|
|
},
|
|
{
|
|
"label": "carton dev",
|
|
"type": "shell",
|
|
"command": "carton dev --product TokamakDemo"
|
|
},
|
|
{
|
|
"label": "make",
|
|
"type": "shell",
|
|
"command": "make",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "make run",
|
|
"type": "shell",
|
|
"command": "make run",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |