Skip to content

Commit

Permalink
Update VS code tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
bartsokol committed Apr 2, 2018
1 parent c41fd92 commit 02d42a2
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,26 @@
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"label": "build",
"command": "dotnet build",
"type": "shell",
"group": "build",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
{
"taskName": "test",
"label": "test",
"command": "dotnet test ./Monacs.UnitTests/Monacs.UnitTests.fsproj",
"type": "shell",
"group": "build",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
Expand Down

0 comments on commit 02d42a2

Please sign in to comment.