2018-06-21 18:09:12 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
2018-06-25 16:44:56 +00:00
|
|
|
"args": [],
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceRoot}"
|
|
|
|
},
|
2018-06-21 18:09:12 +00:00
|
|
|
"tasks": [
|
|
|
|
{
|
2018-06-25 16:44:56 +00:00
|
|
|
"label": "build service",
|
2018-06-21 18:09:12 +00:00
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"${workspaceFolder}/src/cartservice/cartservice.csproj"
|
|
|
|
],
|
2018-06-25 16:44:56 +00:00
|
|
|
"problemMatcher": "$msCompile",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "build test",
|
|
|
|
"command": "dotnet",
|
|
|
|
"type": "process",
|
|
|
|
"args": [
|
|
|
|
"build",
|
|
|
|
"${workspaceFolder}/tests/cartservice/cartservice.tests.csproj"
|
|
|
|
],
|
2018-06-21 18:09:12 +00:00
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
}
|
|
|
|
]
|
2018-06-25 16:44:56 +00:00
|
|
|
}
|