{ "version": "2.0.0", "tasks": [{ "label": "build", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/Main/Main.csproj" ], "group": { "kind": "build", "isDefault": true }, "problemMatcher": "$msCompile" }, { "label": "test", "type": "shell", "command": "dotnet", "args": [ "test" ], "group": { "kind": "test", "isDefault": true }, "problemMatcher": "$msCompile" } ] }