Skip to content

Commit

Permalink
- adds test task for vscode
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Dec 29, 2020
1 parent 66150c3 commit d9ad3f6
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"label": "build",
"command": "dotnet",
"type": "process",
"group": "build",
"args": [
"build",
"${workspaceFolder}/src/kiota/kiota.csproj",
Expand All @@ -13,10 +14,24 @@
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
"type": "process",
"group": "test",
"args": [
"test",
"${workspaceFolder}/tests/kiota.core.tests/kiota.core.tests.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"group": "none",
"args": [
"publish",
"${workspaceFolder}/src/kiota/kiota.csproj",
Expand All @@ -29,6 +44,7 @@
"label": "watch",
"command": "dotnet",
"type": "process",
"group": "build",
"args": [
"watch",
"run",
Expand Down

0 comments on commit d9ad3f6

Please sign in to comment.