{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Flash MyApplet", "type": "shell", "command": "${workspaceFolder}/scripts/flash.cmd", "options": { "env": { "PACKAGE": "hwb1", "APPLET": "MyApplet", "PARAMS": "31323334" } }, "problemMatcher": [] }, { "label": "List Applets", "type": "shell", "command": "${workspaceFolder}/scripts/list.cmd", "problemMatcher": [] }, { "label": "Test MyApplet", "type": "shell", "command": "${workspaceFolder}/scripts/test.cmd", "options": { "env": { "PACKAGE": "hwb1", "APPLET": "MyApplet" } }, "problemMatcher": [] }, { "label": "Delete MyApplet", "type": "shell", "command": "${workspaceFolder}/scripts/delete.cmd", "problemMatcher": [] } ] }