Skip to content

Commit

Permalink
Fix the Visual Studio Code tasks configuration file (#2448)
Browse files Browse the repository at this point in the history
This fixes the Visual Studio Code tasks configuration file
(`.vscode/tasks.json`), which somehow got corrupted, meaning
that it was no longer valid and didn't work.
  • Loading branch information
timrogers authored May 19, 2022
1 parent c9a7533 commit 218f89f
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,3 @@
{
"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"
},
{
"label": "Format",
"command": "dotnet",
"type": "shell",
"args": ["format"],
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$msCompile"
},
{
"label": "Run docs server",
"command": "mkdocs",
"type": "shell",
"args": ["serve"],
"presentation": {
"reveal": "silent",
"revealProblems": "onProblem"
}
}
]
}
{
"version": "2.0.0",
"tasks": [
Expand Down

0 comments on commit 218f89f

Please sign in to comment.