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