{ "version": "2.0.0", "args": [], "options": { "cwd": "${workspaceRoot}" }, "tasks": [ { "label": "build service", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/src/cartservice/cartservice.csproj" ], "problemMatcher": "$msCompile", "group": { "kind": "build", "isDefault": true } }, { "label": "build test", "command": "dotnet", "type": "process", "args": [ "build", "${workspaceFolder}/tests/cartservice/cartservice.tests.csproj" ], "problemMatcher": "$msCompile" } ] }