Polly-Samples/.vscode/tasks.json

27 строки
839 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "run web api",
"command": "dotnet run --project PollyTestWebApi/PollyTestWebApi.csproj",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
{
"label": "run test client console",
"command": "dotnet run --project PollyTestClientConsole/PollyTestClientConsole.csproj",
"type": "shell",
"group": "build",
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
}