Files
computerinfo/.vscode/tasks.json
2021-11-29 16:13:26 -06:00

47 lines
1.3 KiB
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Go Build",
"type": "shell",
"command": "go build -o bin/",
"presentation": {
"reveal": "silent",
"clear": true
},
},
{
"label": "Fyne Package",
"type": "shell",
"command": "fyne package --name 'Computer Info' --appVersion ${input:appVersion}",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
"clear": true
},
},
{
"label": "Fyne Bundle",
"type": "shell",
"command": "fyne bundle -o data.go Icon.png",
"presentation": {
"reveal": "silent",
"clear": true
},
}
],
"inputs": [
{
"id": "appVersion",
"type": "promptString",
"description": "Application Version (X.Y.Z)",
"default": "1.0.0"
// type specific configuration attributes
}
]
}