Skip to content

Commit a8b1354

Browse files
authored
Update build-a-hello-world-extension.md
1 parent 83401cc commit a8b1354

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/spfx/extensions/get-started/build-a-hello-world-extension.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,16 @@ You can also follow the steps in this article by watching the video on the Share
6565
1. Open **./src/extensions/helloWorld/HelloWorldApplicationCustomizer.manifest.json**.
6666

6767
This file defines your extension type and a unique identifier for your extension. You’ll need this ID later when you debug and deploy your extension to SharePoint.
68+
69+
![Application Customizer manifest json content](../../../images/ext-app-vscode-manifest.png)
6870

6971
## Code your Application Customizer
7072

7173
Open the **./src/extensions/helloWorld/HelloWorldApplicationCustomizer.ts** file.
7274

7375
Notice that base class for the Application Customizer is imported from the **\@microsoft/sp-application-base** package, which contains SharePoint framework code required by the Application Customizer.
7476

75-
![Application Customizer manifest json content](../../../images/ext-app-vscode-manifest.png)
77+
![Application Customizer imports and inheritance](../../../images/ext-app-base.png)
7678

7779
The logic for your Application Customizer is contained in the `onInit()` method, which is called when the client-side extension is first activated on the page. This event occurs after `this.context` and `this.properties` are assigned. As with web parts, `onInit()` returns a promise that you can use to do asynchronous operations.
7880

0 commit comments

Comments
 (0)