{ // 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": [ "test/光伏逆变器2.1_通信地址表_V01.xlsx", ], "problemMatcher": [], "presentation":{ "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": false }, "group": { "kind": "none" } }, { "label": "delFile", "type": "shell", "command": "rm", "args": [ "test/光伏逆变器2.1_通信地址表_V01_dec.dec", ], "problemMatcher": [], "presentation":{ "echo": true, "reveal": "always", "focus": false, "panel": "shared", "showReuseMessage": true, "clear": false }, "group": { "kind": "none" } } ] }