From add065e07344edcc744a9c8ca3ee9d2b040fe417 Mon Sep 17 00:00:00 2001 From: Ryan Hamilton Date: Mon, 29 Nov 2021 16:13:26 -0600 Subject: [PATCH] update package task --- .vscode/tasks.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 0cd8d99..84c961d 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -15,7 +15,7 @@ { "label": "Fyne Package", "type": "shell", - "command": "fyne package --name 'Computer Info'", + "command": "fyne package --name 'Computer Info' --appVersion ${input:appVersion}", "group": { "kind": "build", "isDefault": true @@ -34,5 +34,14 @@ "clear": true }, } + ], + "inputs": [ + { + "id": "appVersion", + "type": "promptString", + "description": "Application Version (X.Y.Z)", + "default": "1.0.0" + // type specific configuration attributes + } ] } \ No newline at end of file