microservices-demo/.vscode/tasks.json

34 lines
833 B
JSON
Raw Normal View History

{
"version": "2.0.0",
2018-06-25 16:44:56 +00:00
"args": [],
"options": {
"cwd": "${workspaceRoot}"
},
"tasks": [
{
2018-06-25 16:44:56 +00:00
"label": "build service",
"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"
],
"problemMatcher": "$msCompile"
}
]
2018-06-25 16:44:56 +00:00
}