update vscode tasks

This commit is contained in:
2021-11-29 10:06:06 -06:00
parent cf17242873
commit fa72e7bc43

18
.vscode/tasks.json vendored
View File

@@ -7,6 +7,15 @@
"label": "Go Build", "label": "Go Build",
"type": "shell", "type": "shell",
"command": "go build -o bin/", "command": "go build -o bin/",
"presentation": {
"reveal": "silent",
"clear": true
},
},
{
"label": "Fyne Package",
"type": "shell",
"command": "fyne package",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@@ -15,6 +24,15 @@
"reveal": "silent", "reveal": "silent",
"clear": true "clear": true
}, },
},
{
"label": "Fyne Bundle",
"type": "shell",
"command": "fyne bundle -o data.go Icon.png",
"presentation": {
"reveal": "silent",
"clear": true
},
} }
] ]
} }