From 9ede820eb8a849ad01a2a4eab5c5ddd5e4d881bb Mon Sep 17 00:00:00 2001 From: Tony Bark <35226681+tonytins@users.noreply.github.com> Date: Sun, 6 Jun 2021 14:38:39 -0400 Subject: [PATCH] VSCode launch and build tasks --- .vscode/launch.json | 19 +++++++++++++++++ .vscode/tasks.json | 50 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d1e17ab --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "bullseye", + "request": "launch", + "type": "dart" + }, + { + "name": "bullseye (profile mode)", + "request": "launch", + "type": "dart", + "flutterMode": "profile" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..18b3eaa --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,50 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "flutter", + "command": "flutter", + "args": ["build", "apk"], + "group": "build", + "problemMatcher": [], + "label": "flutter: flutter build apk" + }, + { + "type": "flutter", + "command": "flutter", + "args": ["build", "ios"], + "group": "build", + "problemMatcher": [], + "label": "flutter: flutter build ios" + }, + { + "type": "flutter", + "command": "flutter", + "args": ["build", "macos"], + "group": "build", + "problemMatcher": [], + "label": "flutter: flutter build macos" + }, + { + "type": "flutter", + "command": "flutter", + "args": ["install"], + "problemMatcher": [], + "label": "flutter: flutter install" + }, + { + "type": "flutter", + "command": "flutter", + "args": ["pub", "get"], + "problemMatcher": [], + "label": "flutter: flutter pub get" + }, + { + "type": "flutter", + "command": "flutter", + "args": ["pub", "upgrade"], + "problemMatcher": [], + "label": "flutter: flutter pub upgrade" + } + ] +}