Skip to content

Commit

Permalink
Add /.vscode/tasks.json for builds inside VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Oct 8, 2023
1 parent af96d96 commit 9d28006
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "process",
"command": "dotnet",
"args": [
"run",
"--project",
"tools/builder",
"--no-launch-profile",
"--",
"--configuration",
"Debug",
"Build"
],
"options": {
"cwd": "${workspaceRoot}"
},
"group": "build",
"presentation": {
"focus": true
},
"problemMatcher": "$msCompile"
},
{
"label": "Pre-PR Build",
"type": "process",
"command": "dotnet",
"args": [
"run",
"--project",
"tools/builder",
"--no-launch-profile",
"--",
"BuildAll"
],
"options": {
"cwd": "${workspaceRoot}"
},
"group": "build",
"presentation": {
"focus": true
},
"problemMatcher": "$msCompile"
},
]
}

0 comments on commit 9d28006

Please sign in to comment.