Skip to content

Commit a8fb6ca

Browse files
Merge pull request SharePoint#5172 from msgx/master
Update tenant-wide-deployment-extensions.md
2 parents 2e58b94 + 9c4709c commit a8fb6ca

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/spfx/extensions/basics/tenant-wide-deployment-extensions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ When developers create a new SharePoint Framework extension solution using stand
1818
> [!WARNING]
1919
> Starting from SharePoint Framework v1.6, default scaffolding will automatically create example files in SharePoint Solution to activate extension across the tenant if you chose to use the tenant-scoped deployment option.
2020
21-
SharePoint Framework solution will need to be configured to use [tenant-scope deployment option](https://docs.microsoft.com/sharepoint/dev/spfx/tenant-scoped-deployment), to be able to automatically activate extensions across the tenant using Tenant Wide Deployment functionality. This means that the `skipFeatureDeployment` attribute in the `package-solution.json` will need to be set as *true*.
21+
SharePoint Framework solution will need to be configured to use [tenant-scope deployment option](https://docs.microsoft.com/sharepoint/dev/spfx/tenant-scoped-deployment), to be able to automatically activate extensions across the tenant using Tenant Wide Deployment functionality. This means that the `skipFeatureDeployment` attribute in the `package-solution.json` will need to be set as *true*.
2222

2323
## Controlling tenant wide deployment from App Catalog site collection
2424

@@ -37,7 +37,7 @@ SharePoint Framework solutions can contain automation that will add automaticall
3737
3838
## Tenant wide deployment list description
3939

40-
Component ID has to exists in the tenant to be able to add entry for it.
40+
Component ID has to exist in the tenant to be able to add entry for it.
4141

4242
| Column | Type | Description |
4343
|----------- |------ |-------------|
@@ -49,7 +49,7 @@ Component ID has to exists in the tenant to be able to add entry for it.
4949
| Location | String | Location of the entry. There are different support locations for application customizers and List View Command Sets. |
5050
| Sequence | int | Sequence of the entry in rendering. |
5151
| Host Properties | String | Additional server-side configuration, like pre-allocated height for placeholders. |
52-
| Disabled | Boolean | Is the entry enabled or disable. |
52+
| Disabled | Boolean | Is the entry enabled or disabled. |
5353

5454
For the Web Template column, any web template definition is technically supported. Following table defines the most commonly used templates.
5555

@@ -61,7 +61,7 @@ For the Web Template column, any web template definition is technically supporte
6161
| Classic team site | STS#0 |
6262
| Classic publishing site | BLANKINTERNET#0 |
6363

64-
For the List Template column any list ID is technically supported, but only subs set of classic list types support modern experiences.
64+
For the List Template column any list ID is technically supported, but only subset of classic list types supports modern experiences.
6565

6666
| List | List Id |
6767
|----------- |------ |
@@ -86,7 +86,7 @@ SharePoint Framework solutions default scaffolding creates an automation file to
8686

8787
![SharePoint client-side solution scaffolded successfully](../../../images/ext-tenant-wide-clientsideinstance.png)
8888

89-
**ClientSideInstance.xml** is taken into account in the solution activation at the App Catalog if the `skipFeatureDeployment` attribute is set to *true* in the `package-solution.json` file.
89+
**ClientSideInstance.xml** is taken into account in the solution activation at the App Catalog if the `skipFeatureDeployment` attribute is set to *true* in the `package-solution.json` file.
9090

9191
This file contains by default following structure. **ClientSideComponentInstance** element instructs SharePoint to add automatically an entry to the Tenant Wide Deployment list when the solution package is added to the App Catalog.
9292

@@ -132,7 +132,7 @@ Below xml definition shows how the optional values could be used as part of the
132132
Properties="{"testMessage":"Test message"}"
133133
ListTemplateId="100"
134134
WebTemplateId="GROUP#0"
135-
Sequence="10"
135+
Sequence="10"
136136
HostProperties="{"preAllocatedApplicationCustomizerTopHeight":"50","preAllocatedApplicationCustomizerBottomHeight":"50"}">
137137
</ClientSideComponentInstance>
138138
</Elements>

0 commit comments

Comments
 (0)