mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
21 lines
362 B
JSON
21 lines
362 B
JSON
|
{
|
||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||
|
// for the documentation about the tasks.json format
|
||
|
"version": "2.0.0",
|
||
|
"tasks": [
|
||
|
{
|
||
|
"label": "build",
|
||
|
"type": "shell",
|
||
|
"command": "make",
|
||
|
"group": {
|
||
|
"kind": "build",
|
||
|
"isDefault": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"label": "rebuild",
|
||
|
"type": "shell",
|
||
|
"command": "make rebuild"
|
||
|
}
|
||
|
]
|
||
|
}
|