-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathlaunch.vs.json
31 lines (31 loc) · 1.01 KB
/
launch.vs.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"name": "Debug realm_dart",
"type": "default",
"program": "dart.exe",
"exe": "C:\\Users\\lubo\\Downloads\\dartsdk-windows-x64-release-2.12.0\\dart-sdk\\bin\\dart.exe",
"cwd": "${workspaceRoot}/lib",
"currentDir": "${workspaceRoot}/lib",
"args": [
"--observe",
"--pause_isolates_on_start=true",
"--pause-isolates-on-start",
"--enable-vm-service:5858/127.0.0.1",
"--disable-service-auth-codes",
"main.dart"
],
"project": "CMakeLists.txt",
"projectTarget": "realm_dart_extension.dll (src\\realm-dart-extension\\Debug\\realm_dart_extension.dll)"
},
{
"type": "dll",
"exe": "",
"project": "CMakeLists.txt",
"projectTarget": "realm_dart_extension.dll (src\\realm-dart-extension\\Debug\\realm_dart_extension.dll)",
"name": "realm_dart_extension.dll (src\\realm-dart-extension\\Debug\\realm_dart_extension.dll)"
}
]
}