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

25 lines
672 B
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Project Setup",
"type": "shell",
"command": "python scripts/setup.py",
"windows": {
"command": "python scripts/setup.py"
},
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "silent",
"echo": false,
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": true
},
"problemMatcher": []
}
]
}