Files
CodeGenerator/.vscode/tasks.json

54 lines
1.3 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "echo Hello"
},
{
"label": "deEncrpyt",
"type": "shell",
"command": "de_encrypt",
"args": [
"${command:pickArgs}",
],
"problemMatcher": [],
"presentation":{
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"group": {
"kind": "none"
}
},
{
"label": "delFile",
"type": "shell",
"command": "rm",
"args": [
"${command:pickArgs}",
],
"problemMatcher": [],
"presentation":{
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"group": {
"kind": "none"
}
}
]
}