2021-07-26 08:58:34 -04:00
|
|
|
{
|
|
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
|
|
// for the documentation about the tasks.json format
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
2021-08-01 21:41:48 -04:00
|
|
|
"label": "Build DebugSA",
|
2021-07-26 08:58:34 -04:00
|
|
|
"type": "shell",
|
2021-08-01 21:41:48 -04:00
|
|
|
"command": "${workspaceFolder}/tools/DebugSA.bat",
|
2021-07-26 08:58:34 -04:00
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared",
|
|
|
|
"showReuseMessage": false,
|
|
|
|
"clear": true
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2021-09-04 08:39:26 -04:00
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"options": {
|
|
|
|
"shell": {
|
|
|
|
"executable": "cmd.exe",
|
|
|
|
"args": [
|
|
|
|
"/d", "/c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-07-26 08:58:34 -04:00
|
|
|
},
|
|
|
|
{
|
2021-08-01 21:41:48 -04:00
|
|
|
"label": "Build ReleaseSA",
|
2021-07-26 08:58:34 -04:00
|
|
|
"type": "shell",
|
2021-08-01 21:41:48 -04:00
|
|
|
"command": "${workspaceFolder}/tools/ReleaseSA.bat",
|
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared",
|
|
|
|
"showReuseMessage": false,
|
|
|
|
"clear": true
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2021-09-04 08:39:26 -04:00
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"options": {
|
|
|
|
"shell": {
|
|
|
|
"executable": "cmd.exe",
|
|
|
|
"args": [
|
|
|
|
"/d", "/c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-08-01 21:41:48 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build DebugVC",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "${workspaceFolder}/tools/DebugVC.bat",
|
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared",
|
|
|
|
"showReuseMessage": false,
|
|
|
|
"clear": true
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2021-09-04 08:39:26 -04:00
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"options": {
|
|
|
|
"shell": {
|
|
|
|
"executable": "cmd.exe",
|
|
|
|
"args": [
|
|
|
|
"/d", "/c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-08-01 21:41:48 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build ReleaseVC",
|
|
|
|
"type": "shell",
|
|
|
|
"command": "${workspaceFolder}/tools/ReleaseVC.bat",
|
2021-07-26 08:58:34 -04:00
|
|
|
"presentation": {
|
|
|
|
"echo": true,
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": false,
|
|
|
|
"panel": "shared",
|
|
|
|
"showReuseMessage": false,
|
|
|
|
"clear": true
|
|
|
|
},
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
2021-09-04 08:39:26 -04:00
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"options": {
|
|
|
|
"shell": {
|
|
|
|
"executable": "cmd.exe",
|
|
|
|
"args": [
|
|
|
|
"/d", "/c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-07-26 08:58:34 -04:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|