Skip to content

Commit

Permalink
Adding build profiel
Browse files Browse the repository at this point in the history
  • Loading branch information
KoenZomers committed Feb 12, 2021
1 parent f2d7a56 commit 77206db
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"windows": {
"options": {
"shell": {
"executable": "pwsh.exe",
"args": [
"-NoProfile",
"-ExecutionPolicy",
"Bypass",
"-File"
]
}
}
},
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "${cwd}/build/Build-Debug.ps1",
"problemMatcher":"$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 77206db

Please sign in to comment.