microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
7421e7dd1015dcbd940bf843d33583470de580ea

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/launch.shared.json

32lines · modecode

1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "name": "Run VS Code extension",
9 "type": "extensionHost",
10 "debugWebWorkerHost": true,
11 "request": "launch",
12 "runtimeExecutable": "${execPath}",
13 "args": [
14 "--profile=dev",
15 "--extensionDevelopmentPath=${workspaceFolder}/source/vscode",
16 "${workspaceFolder}/samples/"
17 ]
18 },
19 {
20 // https://code.visualstudio.com/api/extension-guides/web-extensions#test-your-web-extension-in-vs-code-running-on-desktop
21 "name": "Run VS Code Web Extension",
22 "type": "pwa-extensionHost",
23 "debugWebWorkerHost": true,
24 "request": "launch",
25 "args": [
26 "--extensionDevelopmentPath=${workspaceFolder}/source/vscode",
27 "--extensionDevelopmentKind=web",
28 "${workspaceFolder}/samples/"
29 ]
30 }
31 ]
32}
33