{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "command": "msbuild", "type": "shell", "suppressTaskName": true, "args": [ "/property:GenerateFullPaths=true", "/property:DebugType=portable", "/verbosity:minimal", "/m" //parallel compiling support. ], "tasks": [{ "taskName": "Build (Debug)", "group": { "kind": "build", "isDefault": true }, "problemMatcher": [ "$msCompile" ] }, { "taskName": "Build (Release)", "group": "build", "args": [ "/property:Configuration=Release" ], "problemMatcher": [ "$msCompile" ] }, { "taskName": "Clean (Debug)", "args": [ "/target:Clean" ], "problemMatcher": [ "$msCompile" ] }, { "taskName": "Clean (Release)", "args": [ "/target:Clean", "/property:Configuration=Release" ], "problemMatcher": [ "$msCompile" ] }, { "taskName": "Clean All", "dependsOn": [ "Clean (Debug)", "Clean (Release)" ], "problemMatcher": [ "$msCompile" ] } ] }