[VSCode] add a simple build task to build the solution (#2163)

This commit is contained in:
Brendan Forster
2020-03-30 14:55:47 -03:00
committed by GitHub
parent 3751dd87df
commit b54091376d
+25
View File
@@ -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"
}
]
}