Skip to content

Commit ebdec63

Browse files
authored
Merge branch 'main' into shagar/docs-update-august
2 parents bf57fd4 + 9d3a041 commit ebdec63

File tree

2,129 files changed

+18457
-30597
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,129 files changed

+18457
-30597
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222

2323
> - **!!IMPORTANT!!** - All submissions must complete the baseline sections included in this template. Ignoring or deleting this template may result in closing the issue with the label **type:incomplete-submission**.
2424
> - Follow our guidance on [How To Create Good Pull Requests](https://github.com/SharePoint/sp-dev-docs/wiki/How-to-Create-Good-Pull-Requests).
25-
> - Target the `master` branch of this repo. Released documents are in `live` branch.
25+
> - Target the `main` branch of this repo.
26+
> - When changing a page, ensure you update the `ms.date` front matter wih the current date in the format `MM/DD/YYYY`.
27+
> - Review all build checks and address the automated errors, warnigns, and suggestions.
28+
> - *NOTE: The live site is based on the `live` branch. Site owners periodically refresh `live` branch from the `main` branch so merged PRs won't immediately appear on the live site. Please be patient to see your changes appear on the live site.*
2629
>
2730
> **DELETE THIS SECTION BEFORE SUBMITTING**

docs/apis/alm-api-for-spfx-add-ins.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Application Lifecycle Management (ALM) APIs
33
description: ALM APIs provide simple APIs to manage deployment of your SharePoint Framework solutions and add-ins across your tenant.
4-
ms.date: 09/07/2020
5-
ms.prod: sharepoint
4+
ms.date: 06/28/2022
5+
ms.subservice: migration-tool
66
ms.assetid: fdf7ecb2-8851-425b-b058-3285fba77b68
77
ms.localizationpriority: high
88
---
@@ -141,7 +141,7 @@ var result = appManager.Add(filePath);
141141
Add-PnPApp -Path ./sharepoint-solution-package.sppkg
142142
```
143143

144-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/add-pnpapp) for complete details and examples on this cmdlet.
144+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Add-PnPApp.html) for complete details and examples on this cmdlet.
145145
146146
# [CLI for Microsoft 365](#tab/o365cli)
147147

@@ -200,7 +200,7 @@ appManager.Deploy('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
200200
Publish-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
201201
```
202202

203-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Publish-PnPApp) for complete details and examples on this cmdlet.
203+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Publish-PnPApp.html) for complete details and examples on this cmdlet.
204204
205205
# [CLI for Microsoft 365](#tab/o365cli)
206206

@@ -248,7 +248,7 @@ appManager.Retract('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
248248
Unpublish-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
249249
```
250250

251-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Unpublish-PnPApp) for complete details and examples on this cmdlet.
251+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Unpublish-PnPApp.html) for complete details and examples on this cmdlet.
252252
253253
# [CLI for Microsoft 365](#tab/o365cli)
254254

@@ -284,7 +284,7 @@ appManager.Remove('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
284284
Remove-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
285285
```
286286

287-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Remove-PnPApp) for complete details and examples on this cmdlet.
287+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Remove-PnPApp.html) for complete details and examples on this cmdlet.
288288
289289
# [CLI for Microsoft 365](#tab/o365cli)
290290

@@ -367,7 +367,7 @@ var allAppPackages = appManager.GetAvailable();
367367
Get-PnPApp
368368
```
369369

370-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Get-PnPApp) for complete details and examples on this cmdlet.
370+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Get-PnPApp.html) for complete details and examples on this cmdlet.
371371
372372
# [CLI for Microsoft 365](#tab/o365cli)
373373

@@ -474,7 +474,7 @@ appManager.Install('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
474474
Install-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
475475
```
476476

477-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Install-PnPApp) for complete details and examples on this cmdlet.
477+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Install-PnPApp.html) for complete details and examples on this cmdlet.
478478
479479
# [CLI for Microsoft 365](#tab/o365cli)
480480

@@ -522,7 +522,7 @@ if (appPackage.CanUpgrade) {
522522
Update-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
523523
```
524524

525-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/update-pnpapp) for complete details and examples on this cmdlet.
525+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Update-PnPApp.html) for complete details and examples on this cmdlet.
526526
527527
# [CLI for Microsoft 365](#tab/o365cli)
528528

@@ -569,7 +569,7 @@ appManager.Uninstall('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
569569
Uninstall-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
570570
```
571571

572-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Uninstall-PnPApp) for complete details and examples on this cmdlet.
572+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Uninstall-PnPApp.html) for complete details and examples on this cmdlet.
573573
574574
# [CLI for Microsoft 365](#tab/o365cli)
575575

@@ -613,7 +613,7 @@ appManager.SyncToTeams('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
613613
Sync-PnPAppToTeams -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
614614
```
615615

616-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/sync-pnpapptoteams) for complete details and examples on this cmdlet.
616+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Sync-PnPAppToTeams.html) for complete details and examples on this cmdlet.
617617
618618
# [CLI for Microsoft 365](#tab/o365cli)
619619

docs/apis/export-amr-api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
---
22
title: "SharePoint Migration Export (Asynchronous Metadata Read) API"
33
description: This document targets ISVs and any third-party vendors/developers who are developing and maintaining a migration tool.
4-
ms.date: 07/31/2020
4+
ms.date: 06/28/2022
55
ms.author: jhendr
66
author: JoanneHendrickson
77
manager: pamgreen
88
audience: ITPro
9+
ms.subservice: migration-tool
910
ms.topic: article
1011
ms.localizationpriority: high
1112
ms.collection:

0 commit comments

Comments
 (0)