Skip to content

Commit

Permalink
Add VSCode test tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Apr 16, 2020
1 parent 844d5b0 commit 49b20fb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,28 @@
"group": "build",
"problemMatcher": "$msCompile"
},
// Test Tasks
{
"label": "Run tests (Debug)",
"type": "shell",
"command": "dotnet",
"args": [
"test",
"/p:Configuration=Debug",
],
"group": "test",
"problemMatcher": "$msCompile"
},
{
"label": "Run tests (Release)",
"type": "shell",
"command": "dotnet",
"args": [
"test",
"/p:Configuration=Release",
],
"group": "test",
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit 49b20fb

Please sign in to comment.