Skip to content

Commit 16553d2

Browse files
Adds information about the developer section (SharePoint#5894)
* Adds information about the developer section * Update sharepoint-framework-toolchain.md * Update sharepoint-framework-toolchain.md Updating date accordingly for the merge time. Co-authored-by: Vesa Juvonen <[email protected]>
1 parent 8829271 commit 16553d2

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/spfx/toolchain/sharepoint-framework-toolchain.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Framework toolchain
33
description: The toolchain is the set of build tools, framework packages, and other items that manage building and deploying your SharePoint Framework client-side projects.
4-
ms.date: 06/16/2020
4+
ms.date: 06/22/2020
55
ms.prod: sharepoint
66
localization_priority: Priority
77
---
@@ -140,6 +140,26 @@ npm i
140140

141141
After you run the command, npm scans the `package.json` file and installs the required dependencies.
142142

143+
### Update developer information
144+
145+
Starting from version 1.11, the solution manifest defined in the **package-solution.json** file has been extended with the `developer` section that allows you to store additional information about your organization. Information from this section is validated when you publish your solution to the marketplace. Even if you're building a solution for internal use, it's recommended that you fill in the different properties in your solution manifest. If you specify this information, in the future you might get access to additional insights into the usage of your application.
146+
147+
> [!IMPORTANT]
148+
> If you choose to expose your web parts in Microsoft Teams, users will see the information from the `developer` section when installing your app in Teams.
149+
150+
> [!IMPORTANT]
151+
> Developer section is required to contain valid information for any SharePoint Framework solution which will be available from the Office store or from AppSource.
152+
153+
Following properties are available as a part of the `developer` section:
154+
155+
Attribute|Description|Mandatory
156+
---|---|---
157+
`name`|Name of the organization that built the application|Yes
158+
`websiteUrl`|URL of a website with additional information about the application|Yes
159+
`mpnId`|Microsoft Partner Network ID (more details on [MS Partner Network](https://docs.microsoft.com/partner-center/mpn-overview))|Yes (for solutions published to the marketplace)
160+
`privacyUrl`|Privacy statement URL|Yes
161+
`termOfUseUrl`|Terms of use URL|Yes
162+
143163
## Build tasks
144164

145165
The SharePoint Framework uses [gulp](http://gulpjs.com/) as its task runner to handle processes like the following:

0 commit comments

Comments
 (0)