1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "label": "Build - Debug", 8 "problemMatcher": "$msCompile", 9 "type": "shell", 10 "command": "./build.sh -d", 11 "group": "build", 12 "presentation": { 13 "reveal": "silent", 14 "panel": "shared" 15 } 16 }, 17 { 18 "label": "Build - Release", 19 "problemMatcher": "$msCompile", 20 "type": "shell", 21 "command": "./build.sh", 22 "group": "build", 23 "presentation": { 24 "reveal": "always", 25 "panel": "shared" 26 } 27 } 28 ] 29} 30