Add more debug/release tasks to `tasks.json`

This commit is contained in:
Max Desiatov 2020-12-19 15:19:12 +00:00
parent 77451a94ad
commit d42606d18f
No known key found for this signature in database
GPG Key ID: FE08EBF9CF58CBA2
1 changed files with 10 additions and 0 deletions

10
.vscode/tasks.json vendored
View File

@ -33,6 +33,11 @@
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton dev"
},
{
"label": "build and run dev release",
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton dev --release"
},
{
"label": "build release and run dev",
"type": "shell",
@ -88,6 +93,11 @@
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton bundle"
},
{
"label": "build and run bundle debug",
"type": "shell",
"command": "swift build && cd TestApp && ../.build/debug/carton bundle --debug"
},
{
"label": "build and run bundle, log to file",
"type": "shell",