mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 04:11:22 +00:00
VSCode launch and build tasks
This commit is contained in:
parent
eeb5c9ac28
commit
9ede820eb8
2 changed files with 69 additions and 0 deletions
19
.vscode/launch.json
vendored
Normal file
19
.vscode/launch.json
vendored
Normal file
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
50
.vscode/tasks.json
vendored
Normal file
50
.vscode/tasks.json
vendored
Normal file
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue