mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
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.
74 lines
1.4 KiB
JSON
74 lines
1.4 KiB
JSON
{
|
|
"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": "Unit Tests",
|
|
"command": "./build.sh",
|
|
"type": "shell",
|
|
"args": [
|
|
"--target=UnitTests"
|
|
],
|
|
"group": {
|
|
"kind": "test"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Convention Tests",
|
|
"command": "./build.sh",
|
|
"type": "shell",
|
|
"args": [
|
|
"--target=ConventionTests"
|
|
],
|
|
"group": {
|
|
"kind": "test"
|
|
},
|
|
"presentation": {
|
|
"reveal": "always"
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Format",
|
|
"command": "dotnet",
|
|
"type": "shell",
|
|
"args": ["format"],
|
|
"presentation": {
|
|
"reveal": "silent"
|
|
},
|
|
"problemMatcher": "$msCompile"
|
|
},
|
|
{
|
|
"label": "Docs",
|
|
"command": "mkdocs",
|
|
"type": "shell",
|
|
"args": ["serve"],
|
|
"presentation": {
|
|
"reveal": "silent",
|
|
"revealProblems": "onProblem"
|
|
}
|
|
}
|
|
]
|
|
}
|