Skip to content

Commit d7446b9

Browse files
[All Hosts] (sideloading) change teamsfx CLI to teamsapp CLI (#4941)
* [All Hosts] (sideloading) change teamsfx CLI to teamsapp CLI * Apply suggestions from code review Co-authored-by: Sam Ramon <[email protected]> --------- Co-authored-by: Sam Ramon <[email protected]>
1 parent a42afeb commit d7446b9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/develop/convert-xml-to-json-manifest.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Convert an add-in to use the unified manifest for Microsoft 365
33
description: Learn the various methods for converting an add-in with an add-in only manifest to the unified manifest for Microsoft 365 and sideload the add-in.
44
ms.topic: how-to
5-
ms.date: 04/12/2024
5+
ms.date: 12/12/2024
66
ms.localizationpriority: medium
77
---
88

@@ -164,9 +164,13 @@ Once you have the unified manifest created, there are two ways to create the zip
164164
1. In the root of the project, open a command prompt or bash shell and run the following commands.
165165
166166
```command&nbsp;line
167-
npm install -g @microsoft/teamsfx-cli
167+
npm install -g @microsoft/teamsapp-cli
168168
169-
teamsfx m365 sideloading --file-path <relative-path-to-zip-file>
169+
teamsapp install --file-path <relative-path-to-zip-file>
170170
```
171171
172+
1. When you use the Teams Toolkit CLI to start an add-in, *always stop the session with the following command*. Closing the server window doesn't reliably stop the server and closing the Office application doesn't reliably cause Office to unacquire the add-in. Replace the "{GUID of the add-in}" with the GUID in the "id" property of the unified manifest.
172173
174+
```command&nbsp;line
175+
teamsapp uninstall -manifest-id {GUID of the add-in}
176+
```

0 commit comments

Comments
 (0)