Files
computerinfo/.vscode/tasks.json

38 lines
1020 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Fyne Cross - Build for Windows",
"type": "shell",
"command": "fyne-cross windows",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent",
"clear": true
},
},
{
"label": "Go Build",
"type": "shell",
"command": "go build -o bin/",
"presentation": {
"reveal": "silent",
"clear": true
},
},
],
"inputs": [
{
"id": "appVersion",
"type": "promptString",
"description": "Application Version (X.Y.Z)",
"default": "1.1.0"
// type specific configuration attributes
}
]
}