VSCode cleanup

This commit is contained in:
Matt Nadareski
2020-07-30 16:54:25 -07:00
parent 7e64d55b2c
commit 9ed8d0e4b9
3 changed files with 34 additions and 26 deletions

31
.vscode/tasks.json vendored
View File

@@ -4,39 +4,20 @@
"version": "2.0.0",
"tasks": [
{
"label": "build-mono",
"label": "build",
"command": "dotnet",
"type": "shell",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"build",
// Ask dotnet build to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/property:Configuration=Mono",
"/t:build"
// Do not generate summary otherwise it leads to duplicate errors in Problems panel
"/consoleloggerparameters:NoSummary"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
},
{
"label": "build-debug",
"type": "shell",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true",
"/property:Configuration=Debug",
"/t:build"
],
"group": "build",
"presentation": {
// Reveal the output only if unrecognized errors occur.
"reveal": "silent"
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": "$msCompile"
}
]