Skip to content

Commit

Permalink
Allows building the solution with CTRL+Shift+B in VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
cwe1ss committed Sep 10, 2018
1 parent 5cbd082 commit 127edfb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}",
"--no-restore"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 127edfb

Please sign in to comment.