Skip to content

Commit

Permalink
Fixing vscode launch configuration for example app
Browse files Browse the repository at this point in the history
  • Loading branch information
jmatth committed Apr 24, 2022
1 parent 32ede15 commit ccc8c56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,22 @@
"configurations": [
{
"name": "example",
"cwd": "packages/rich_clipboard/example",
"cwd": "rich_clipboard/example",
"request": "launch",
"program": "lib/main.dart",
"type": "dart"
},
{
"name": "example (profile mode)",
"cwd": "packages/rich_clipboard/example",
"cwd": "rich_clipboard/example",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
"flutterMode": "profile"
},
{
"name": "example (release mode)",
"cwd": "packages/rich_clipboard/example",
"cwd": "rich_clipboard/example",
"request": "launch",
"type": "dart",
"program": "lib/main.dart",
Expand Down

0 comments on commit ccc8c56

Please sign in to comment.