Files
octokit.net/.vscode/tasks.json
Tim Rogers 218f89f136 Fix the Visual Studio Code tasks configuration file (#2448)
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.
2022-05-19 09:41:39 +01:00

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"
}
}
]
}