CheatMenuSA/.vscode/tasks.json

307 lines
8.8 KiB
JSON
Raw Normal View History

{
// 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",
"type": "shell",
2021-08-01 21:41:48 -04:00
"command": "${workspaceFolder}/tools/DebugSA.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": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-09-04 08:39:26 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
},
{
2021-08-01 21:41:48 -04:00
"label": "Build ReleaseSA",
"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": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-09-04 08:39:26 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
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": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-09-04 08:39:26 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-08-01 21:41:48 -04:00
},
{
"label": "Build ReleaseVC",
"type": "shell",
"command": "${workspaceFolder}/tools/ReleaseVC.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": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-09-04 08:39:26 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-10-21 18:23:02 -04:00
},
{
"label": "Build DebugIII",
"type": "shell",
"command": "${workspaceFolder}/tools/DebugIII.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-10-21 18:23:02 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-10-21 18:23:02 -04:00
},
{
"label": "Build ReleaseIII",
"type": "shell",
"command": "${workspaceFolder}/tools/ReleaseIII.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-10-21 18:23:02 -04:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-10-21 18:23:02 -04:00
},
2021-12-27 13:44:13 -05:00
{
"label": "Build DebugAll",
"type": "shell",
"command": "${workspaceFolder}/tools/DebugAll.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-12-27 13:44:13 -05:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-12-27 13:44:13 -05:00
},
{
"label": "Build ReleaseAll",
"type": "shell",
"command": "${workspaceFolder}/tools/ReleaseAll.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-12-27 13:44:13 -05:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-12-27 13:44:13 -05:00
},
{
"label": "Package all",
"type": "shell",
"command": "${workspaceFolder}/tools/PackAll.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2021-12-27 13:44:13 -05:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2021-12-27 13:44:13 -05:00
},
2022-01-07 03:18:00 -05:00
{
"label": "Format Code",
"type": "shell",
"command": "${workspaceFolder}/tools/FormatCode.bat",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": [
2022-08-10 00:40:38 -04:00
"/d",
"/c"
2022-01-07 03:18:00 -05:00
]
}
}
2022-08-10 00:40:38 -04:00
}
2022-01-07 03:18:00 -05:00
},
2022-08-10 00:40:38 -04:00
{
"type": "cppbuild",
"label": "C/C++: cl.exe build active file",
"command": "cl.exe",
"args": [
"/Zi",
"/EHsc",
"/nologo",
"/Fe${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$msCompile"
],
"group": "build",
"detail": "compiler: cl.exe"
}
]
}