{ "version": "2.0.0", "tasks": [ { "label": "build", "command": "dotnet", "type": "shell", "args": [ "build", "--configuration", "Debug" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } }, { "label": "run", "command": "dotnet", "type": "shell", "args": [ "run", "--no-build" ], "problemMatcher": "$msCompile", "group": { "kind": "test", "isDefault": true }, "isBackground": false }, { "label": "clean", "command": "dotnet", "type": "shell", "args": [ "clean" ], "problemMatcher": "$msCompile" } ] }