Skip to content

Commit

Permalink
build: add vscode build task
Browse files Browse the repository at this point in the history
  • Loading branch information
SoCuul committed Sep 23, 2024
1 parent 850707b commit 727d2d9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build SCInsta for development",
"type": "shell",
"command": "./build-dev.sh true",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}

0 comments on commit 727d2d9

Please sign in to comment.