You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Refresh of Features > API
* Refresh of Features > API
Take 3
* Edit of Site-theming section
* Edited Site theming and related topics
* Updated Features section of TOC
* Edited new Groupify section
* Edit pass
* Fixes
* Minor edits
Copy file name to clipboardExpand all lines: docs/apis/alm-api-for-spfx-add-ins.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ ALM APIs are natively provided by using REST APIs, but there are additional CSOM
29
29
## REST API
30
30
31
31
> [!TIP]
32
-
> ALM APIs are also supported for the [site collection app catalog](../general-development/site-collection-app-catalog.md). URLs for the site collection app catalog operations are exactly the same, but you can change the `tenantappcatalog`as`sitecollectionappcatalog`. Notice also that you will need to enable site collection app catalog in your site collection or you will get an exception when trying to use these APIs.
32
+
> ALM APIs are also supported for the [site collection app catalog](../general-development/site-collection-app-catalog.md). URLs for the site collection app catalog operations are exactly the same, but you can change the `tenantappcatalog`to`sitecollectionappcatalog`. Notice also that you will need to enable the site collection app catalog in your site collection or you will get an exception when trying to use these APIs.
33
33
34
34
### Add solution package to the app catalog
35
35
@@ -161,7 +161,7 @@ By using [PnP PowerShell](https://docs.microsoft.com/en-us/powershell/sharepoint
161
161
### Add and publish your app to the app catalog
162
162
Adding your app (.sppkg file, .app file) to the app catalog is a prerequisite to making your app available for use on your SharePoint sites. You can do this by using the following cmdlet:
163
163
164
-
```PowerShell
164
+
```powershell
165
165
Add-PnPApp -Path ./myapp.sppkg -Scope Tenant
166
166
```
167
167
@@ -226,6 +226,7 @@ Get-PnPApp -Scope Tenant
226
226
Using the [Office 365 CLI](https://sharepoint.github.io/office365-cli?utm_source=msft_docs&utm_medium=page&utm_campaign=Application+Lifecycle+Management+ALM+APIs), you can automate deploying, publishing, installing, upgrading, and retracting your apps. The Office 365 CLI is a cross-platform command-line interface that can be used on any platform, including Windows, MacOS, and Linux. To learn more about these commands, see the following sections.
227
227
228
228
### Add and publish your app to the app catalog
229
+
229
230
Adding your app (.sppkg file, .app file) to the tenant app catalog is a prerequisite to making your app available for use on your SharePoint sites. Use the [add](https://sharepoint.github.io/office365-cli/cmd/spo/app/app-add/?utm_source=msft_docs&utm_medium=page&utm_campaign=Application+Lifecycle+Management+ALM+APIs) command to do this:
You may want to remove an app that you added earlier, and you can do this by using the [remove](https://sharepoint.github.io/office365-cli/cmd/spo/app/app-remove/?utm_source=msft_docs&utm_medium=page&utm_campaign=Application+Lifecycle+Management+ALM+APIs) command:
249
251
250
252
```shell
@@ -253,6 +255,7 @@ spo app remove --id <app id>
253
255
254
256
255
257
### Use apps on your site
258
+
256
259
After the app is added to the app catalog and published, you can install the app to your site by using the [install](https://sharepoint.github.io/office365-cli/cmd/spo/app/app-install/?utm_source=msft_docs&utm_medium=page&utm_campaign=Application+Lifecycle+Management+ALM+APIs) command:
0 commit comments