Skip to content

Commit

Permalink
Add tasks using FAKE
Browse files Browse the repository at this point in the history
  • Loading branch information
florenzen committed May 24, 2024
1 parent 82f7af4 commit f3114c1
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"version": "2.0.0",
"tasks": [
{
"type": "msbuild",
"type": "shell",
"command": "./build.sh DotnetBuild",
"problemMatcher": [
"$msCompile"
],
Expand All @@ -11,7 +12,34 @@
"isDefault": true
},
"label": "build",
"detail": "Build the JsonSchemaProvider.sln solution using dotnet build",
"detail": "Build the JsonSchemaProvider.sln solution using FAKE",
},
{
"type": "shell",
"command": "./build.sh DotnetTest",
"problemMatcher": [
"$msCompile"
],
"group": {
"kind": "test",
"isDefault": true
},
"label": "test",
"detail": "Run the tests using FAKE",
},
{
"type": "shell",
"command": "./build.sh BuildDocs",
"isBackground": true,
"problemMatcher": [
"$msCompile"
],
"group": {
"kind": "build",
"isDefault": false
},
"label": "docs",
"detail": "Build the docs",
}
]
}

0 comments on commit f3114c1

Please sign in to comment.