Skip to content

Commit

Permalink
[VSCode] add a simple build task to build the solution (#2163)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey authored Mar 30, 2020
1 parent 3751dd8 commit b540913
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Solution",
"command": "dotnet",
"type": "shell",
"args": [
"build",
// Ask dotnet build to generate full paths for file names.
"/property:GenerateFullPaths=true",
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
},
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit b540913

Please sign in to comment.