Skip to content

Instantly share code, notes, and snippets.

@SilentPenguin
Created September 18, 2022 14:03
Show Gist options
  • Save SilentPenguin/2886814d58faf8846699628080b89870 to your computer and use it in GitHub Desktop.
Save SilentPenguin/2886814d58faf8846699628080b89870 to your computer and use it in GitHub Desktop.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "shell",
"args": [
"build",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment