1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " Debugger For Microsoft Edge: Sample app (Script Debug|x64)" ,
6+ "type" : " edge" ,
7+ "request" : " launch" ,
8+ "cwd" : " ${workspaceFolder}" ,
9+ "runtimeExecutable" : " ${workspaceFolder}/Debug/x64/WebView2APISample.exe" ,
10+ "env" : {
11+ // customize for your build location
12+ "Path" : " %path%;${workspaceFolder}/Debug/x64"
13+ },
14+ "useWebView" : true
15+ },
16+ {
17+ "name" : " Debugger For Microsoft Edge: Sample app (Script Debug|x86)" ,
18+ "type" : " edge" ,
19+ "request" : " launch" ,
20+ "cwd" : " ${workspaceFolder}" ,
21+ "runtimeExecutable" : " ${workspaceFolder}/Debug/Win32/WebView2APISample.exe" ,
22+ "env" : {
23+ // customize for your build location
24+ "Path" : " %path%;${workspaceFolder}/Debug/Win32"
25+ },
26+ "useWebView" : true
27+ },
28+ {
29+ "name" : " Debugger For Microsoft Edge: Sample app (Script Debug|ARM64)" ,
30+ "type" : " edge" ,
31+ "request" : " launch" ,
32+ "cwd" : " ${workspaceFolder}" ,
33+ "runtimeExecutable" : " ${workspaceFolder}/Debug/arm64/WebView2APISample.exe" ,
34+ "env" : {
35+ // customize for your build location
36+ "Path" : " %path%;${workspaceFolder}/Debug/arm64"
37+ },
38+ "useWebView" : true
39+ },
40+ {
41+ "name" : " Debugger For Microsoft Edge: Sample app (Script Release|x64)" ,
42+ "type" : " edge" ,
43+ "request" : " launch" ,
44+ "cwd" : " ${workspaceFolder}" ,
45+ "runtimeExecutable" : " ${workspaceFolder}/Release/x64/WebView2APISample.exe" ,
46+ "env" : {
47+ // customize for your build location
48+ "Path" : " %path%;${workspaceFolder}/Release/x64"
49+ },
50+ "useWebView" : true
51+ },
52+ {
53+ "name" : " Debugger For Microsoft Edge: Sample app (Script Release|x86)" ,
54+ "type" : " edge" ,
55+ "request" : " launch" ,
56+ "cwd" : " ${workspaceFolder}" ,
57+ "runtimeExecutable" : " ${workspaceFolder}/Release/Win32/WebView2APISample.exe" ,
58+ "env" : {
59+ // customize for your build location
60+ "Path" : " %path%;${workspaceFolder}/Release/Win32"
61+ },
62+ "useWebView" : true
63+ },
64+ {
65+ "name" : " Debugger For Microsoft Edge: Sample app (Script Release|ARM64)" ,
66+ "type" : " edge" ,
67+ "request" : " launch" ,
68+ "cwd" : " ${workspaceFolder}" ,
69+ "runtimeExecutable" : " ${workspaceFolder}/Release/arm64/WebView2APISample.exe" ,
70+ "env" : {
71+ // customize for your build location
72+ "Path" : " %path%;${workspaceFolder}/Release/arm64"
73+ },
74+ "useWebView" : true
75+ },
76+ {
77+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Debug|x64)" ,
78+ "type" : " pwa-msedge" ,
79+ "request" : " launch" ,
80+ "cwd" : " ${workspaceFolder}" ,
81+ "runtimeExecutable" : " ${workspaceFolder}/Debug/x64/WebView2APISample.exe" ,
82+ "env" : {
83+ // customize for your build location
84+ "Path" : " %path%;${workspaceFolder}/Debug/x64"
85+ },
86+ "useWebView" : " true"
87+ },
88+ {
89+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Debug|x86)" ,
90+ "type" : " pwa-msedge" ,
91+ "request" : " launch" ,
92+ "cwd" : " ${workspaceFolder}" ,
93+ "runtimeExecutable" : " ${workspaceFolder}/Debug/Win32/WebView2APISample.exe" ,
94+ "env" : {
95+ // customize for your build location
96+ "Path" : " %path%;${workspaceFolder}/Debug/Win32"
97+ },
98+ "useWebView" : " true"
99+ },
100+ {
101+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Debug|ARM64)" ,
102+ "type" : " pwa-msedge" ,
103+ "request" : " launch" ,
104+ "cwd" : " ${workspaceFolder}" ,
105+ "runtimeExecutable" : " ${workspaceFolder}/Debug/arm64/WebView2APISample.exe" ,
106+ "env" : {
107+ // customize for your build location
108+ "Path" : " %path%;${workspaceFolder}/Debug/arm64"
109+ },
110+ "useWebView" : " true"
111+ },
112+ {
113+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Release|x64)" ,
114+ "type" : " pwa-msedge" ,
115+ "request" : " launch" ,
116+ "cwd" : " ${workspaceFolder}" ,
117+ "runtimeExecutable" : " ${workspaceFolder}/Release/x64/WebView2APISample.exe" ,
118+ "env" : {
119+ // customize for your build location
120+ "Path" : " %path%;${workspaceFolder}/Release/x64"
121+ },
122+ "useWebView" : " true"
123+ },
124+ {
125+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Release|x86)" ,
126+ "type" : " pwa-msedge" ,
127+ "request" : " launch" ,
128+ "cwd" : " ${workspaceFolder}" ,
129+ "runtimeExecutable" : " ${workspaceFolder}/Release/Win32/WebView2APISample.exe" ,
130+ "env" : {
131+ // customize for your build location
132+ "Path" : " %path%;${workspaceFolder}/Release/Win32"
133+ },
134+ "useWebView" : " true"
135+ },
136+ {
137+ "name" : " JavaScript Debugger(Nightly): Sample app (Script Release|ARM64)" ,
138+ "type" : " pwa-msedge" ,
139+ "request" : " launch" ,
140+ "cwd" : " ${workspaceFolder}" ,
141+ "runtimeExecutable" : " ${workspaceFolder}/Release/arm64/WebView2APISample.exe" ,
142+ "env" : {
143+ // customize for your build location
144+ "Path" : " %path%;${workspaceFolder}/Release/arm64"
145+ },
146+ "useWebView" : " true"
147+ },
148+ {
149+ "name" : " Debugger For Microsoft Edge: Attach to Edge" ,
150+ "type" : " edge" ,
151+ "port" : 9222 ,
152+ "request" : " attach" ,
153+ "webRoot" : " ${workspaceFolder}"
154+ },
155+ {
156+ "name" : " JavaScript Debugger(Nightly): Attach to Edge" ,
157+ "type" : " pwa-msedge" ,
158+ "port" : 9222 ,
159+ "request" : " attach" ,
160+ "webRoot" : " ${workspaceFolder}"
161+ },
162+ {
163+ "name" : " Sample app (debug app)" ,
164+ "type" : " cppvsdbg" ,
165+ "request" : " launch" ,
166+ "program" : " ${workspaceFolder}/Debug/x64/WebView2APISample.exe" ,
167+ "args" : [],
168+ "preLaunchTask" : " " ,
169+ "stopAtEntry" : false ,
170+ "cwd" : " ${workspaceFolder}" ,
171+ "environment" : [],
172+ "externalConsole" : true
173+ },
174+ {
175+ "name" : " Sample app (debug webview)" ,
176+ "type" : " cppvsdbg" ,
177+ "request" : " attach" ,
178+ "processId" : " ${command:pickProcess}"
179+ }
180+ ]
181+ }
0 commit comments