We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da00723 commit 02dc3aaCopy full SHA for 02dc3aa
.vscode/launch.json
@@ -19,11 +19,19 @@
19
"type": "edge",
20
"request": "launch",
21
// To debug your Add-in:
22
- // 1. Replace the url with the share link to an Office Online document.
+ // 1. When prompted, enter the url (share link) to an Office Online document.
23
// 2. Sideload your Add-in. https://docs.microsoft.com/en-us/office/dev/add-ins/testing/sideload-office-add-ins-for-testing
24
- "url": "https://www.office.com",
+ "url": "${input:officeOnlineDocumentUrl}",
25
"webRoot": "${workspaceFolder}",
26
"preLaunchTask": "Debug: Web"
27
}
28
- ]
+ ],
29
+ "inputs": [
30
+ {
31
+ "id": "officeOnlineDocumentUrl",
32
+ "type": "promptString",
33
+ "description": "Please enter the url for the Office Online document.",
34
+ }
35
+],
36
+
37
0 commit comments