-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Address some devtools extensions feedback related to Windows
- Loading branch information
1 parent
ec4387b
commit 18b54b8
Showing
6 changed files
with
91 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
packages/devtools_extensions/example/foo/.vscode/launch.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
// 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": "foo_devtools_extension", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart" | ||
}, | ||
{ | ||
"name": "foo_devtools_extension (profile mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "profile", | ||
}, | ||
{ | ||
"name": "foo_devtools_extension (release mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release", | ||
}, | ||
{ | ||
"name": "foo_devtools_extension + simulated environment", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
}, | ||
{ | ||
"name": "foo_devtools_extension + simulated environment (profile mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "profile", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
}, | ||
{ | ||
"name": "foo_devtools_extension + simulated environment (release mode)", | ||
"cwd": "packages/foo_devtools_extension", | ||
"request": "launch", | ||
"type": "dart", | ||
"flutterMode": "release", | ||
"args": [ | ||
"--dart-define=use_simulated_environment=true" | ||
], | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters