1
0
Fork 0
mirror of https://github.com/jakcron/nstool.git synced 2025-01-11 12:05:28 +00:00
nstool/.vscode/tasks.json
2018-03-17 16:03:26 +08:00

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"
}
]
}