Skip to content

Commit cd2fd86

Browse files
committed
- adds launch configurations for new commands
Signed-off-by: Vincent Biret <[email protected]>
1 parent 0053504 commit cd2fd86

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

.vscode/launch.json

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@
266266
"stopAtEntry": false
267267
},
268268
{
269-
"name": "Launch Migrate",
269+
"name": "Launch Client Migrate",
270270
"type": "coreclr",
271271
"request": "launch",
272272
"preLaunchTask": "build",
@@ -279,6 +279,41 @@
279279
"KIOTA_CONFIG_PREVIEW": "true"
280280
}
281281
},
282+
{
283+
"name": "Launch Client Generate",
284+
"type": "coreclr",
285+
"request": "launch",
286+
"preLaunchTask": "build",
287+
"program": "${workspaceFolder}/src/kiota/bin/Debug/net8.0/kiota.dll",
288+
"args": ["client", "generate"],
289+
"cwd": "${workspaceFolder}/samples/msgraph-mail/dotnet",
290+
"console": "internalConsole",
291+
"stopAtEntry": false,
292+
"env": {
293+
"KIOTA_CONFIG_PREVIEW": "true"
294+
}
295+
},
296+
{
297+
"name": "Launch Client Edit",
298+
"type": "coreclr",
299+
"request": "launch",
300+
"preLaunchTask": "build",
301+
"program": "${workspaceFolder}/src/kiota/bin/Debug/net8.0/kiota.dll",
302+
"args": [
303+
"client",
304+
"edit",
305+
"--client-name",
306+
"GraphClient",
307+
"--additional-data",
308+
"true"
309+
],
310+
"cwd": "${workspaceFolder}/samples/msgraph-mail/dotnet",
311+
"console": "internalConsole",
312+
"stopAtEntry": false,
313+
"env": {
314+
"KIOTA_CONFIG_PREVIEW": "true"
315+
}
316+
},
282317
{
283318
"name": "Launch Login (github - device)",
284319
"type": "coreclr",

0 commit comments

Comments
 (0)