Skip to content

Commit

Permalink
fix f5 for AI_Assistant
Browse files Browse the repository at this point in the history
  • Loading branch information
xuruiyao-msft committed Dec 12, 2023
1 parent 0c97589 commit a6b9373
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Word-Add-in-AI-Assistant/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
{
"label": "Debug: Excel Desktop",
"type": "npm",
"script": "start:desktop -- --app excel",
"script": "start:desktop:excel",
"presentation": {
"clear": true,
"panel": "dedicated",
Expand All @@ -41,7 +41,7 @@
{
"label": "Debug: Outlook Desktop",
"type": "npm",
"script": "start:desktop -- --app outlook",
"script": "start:desktop:outlook",
"presentation": {
"clear": true,
"panel": "dedicated",
Expand All @@ -51,7 +51,7 @@
{
"label": "Debug: PowerPoint Desktop",
"type": "npm",
"script": "start:desktop -- --app powerpoint",
"script": "start:desktop:powerpoint",
"presentation": {
"clear": true,
"panel": "dedicated",
Expand All @@ -61,7 +61,7 @@
{
"label": "Debug: Word Desktop",
"type": "npm",
"script": "start:desktop -- --app word",
"script": "start:desktop:word",
"presentation": {
"clear": true,
"panel": "dedicated",
Expand Down
4 changes: 4 additions & 0 deletions Word-Add-in-AI-Assistant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"prettier": "office-addin-lint prettier",
"start": "office-addin-debugging start manifest.xml",
"start:desktop": "office-addin-debugging start manifest.xml desktop",
"start:desktop:word": "office-addin-debugging start manifest.xml desktop --app word",
"start:desktop:excel": "office-addin-debugging start manifest.xml desktop --app excel",
"start:desktop:powerpoint": "office-addin-debugging start manifest.xml desktop --app powerpoint",
"start:desktop:outlook": "office-addin-debugging start manifest.xml desktop --app outlook",
"start:web": "office-addin-debugging start manifest.xml web",
"stop": "office-addin-debugging stop manifest.xml",
"validate": "office-addin-manifest validate manifest.xml",
Expand Down

0 comments on commit a6b9373

Please sign in to comment.