Skip to content

Commit a1ae71c

Browse files
rob-windsorandrewconnell
authored andcommitted
FY23Q1 content refresh
- run through all exercise steps in associated MSLearn module to validate good working order - updated steps & fixed typos where necessary - updated slides where necessary - update code samples to reflect MSLearn HOL exercise refresh & updates - any & all users/names/company names/pictures/IDs are not real people/tenants... all are from M365 demo tenants provided by Microsoft
1 parent 98f7dc0 commit a1ae71c

Some content is hidden

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

41 files changed

+130842
-23246
lines changed

Demos/01-appcustomizer/.eslintrc.js

+378
Large diffs are not rendered by default.

Demos/01-appcustomizer/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ release
1313
solution
1414
temp
1515
*.sppkg
16+
.heft
1617

1718
# Coverage directory used by tools like istanbul
1819
coverage

Demos/01-appcustomizer/.yo-rc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"@microsoft/generator-sharepoint": {
33
"plusBeta": false,
44
"isCreatingSolution": true,
5-
"version": "1.14.0",
5+
"version": "1.15.2",
66
"libraryName": "sp-fx-app-customizer",
7-
"libraryId": "75b53f91-f3c8-441b-9d18-852880eeff48",
7+
"libraryId": "6730ba12-fa9a-44b9-9783-057a0a764e63",
88
"environment": "spo",
99
"packageManager": "npm",
1010
"solutionName": "SPFxAppCustomizer",

Demos/01-appcustomizer/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This completed project is the result of the lab exercise **Create an application
44

55
## Prerequisites
66

7-
- [Microsoft 365 tenant](https://developer.microsoft.com/office/dev-program?ocid=MSlearn)
7+
- [Microsoft 365 tenant](https://developer.microsoft.com/en-us/microsoft-365/dev-program?ocid=MSlearn)
88
- [Configured SharePoint Framework development environment](https://docs.microsoft.com/sharepoint/dev/spfx/set-up-your-development-environment)
99
- [Visual Studio Code](https://code.visualstudio.com/)
1010

Demos/01-appcustomizer/config/package-solution.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
33
"solution": {
44
"name": "sp-fx-app-customizer-client-side-solution",
5-
"id": "75b53f91-f3c8-441b-9d18-852880eeff48",
5+
"id": "6730ba12-fa9a-44b9-9783-057a0a764e63",
66
"version": "1.0.0.0",
77
"includeClientSideAssets": true,
88
"skipFeatureDeployment": true,
@@ -12,7 +12,7 @@
1212
"websiteUrl": "",
1313
"privacyUrl": "",
1414
"termsOfUseUrl": "",
15-
"mpnId": "Undefined-1.14.0"
15+
"mpnId": "Undefined-1.15.2"
1616
},
1717
"metadata": {
1818
"shortDescription": {
@@ -29,7 +29,7 @@
2929
{
3030
"title": "Application Extension - Deployment of custom action",
3131
"description": "Deploys a custom action with ClientSideComponentId association",
32-
"id": "6b7b9bef-4b8d-489b-9ebe-38fcc953455b",
32+
"id": "4f179b78-9ff1-4497-9277-9e8c4a3aeb21",
3333
"version": "1.0.0.0",
3434
"assets": {
3535
"elementManifests": [

Demos/01-appcustomizer/config/serve.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
2+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
33
"port": 4321,
44
"https": true,
55
"serveConfigurations": {
66
"default": {
7-
"pageUrl": "https://m365x08978750.sharepoint.com/sites/DeveloperSite/SitePages/Home.aspx",
7+
"pageUrl": "https://m365x23090844.sharepoint.com/sites/DeveloperSite/SitePages/Home.aspx",
88
"customActions": {
9-
"282553e9-90a8-44d5-905f-3a31bc5f45ce": {
9+
"e66200d1-7e31-4a99-92fd-f3a0d29a7226": {
1010
"location": "ClientSideExtension.ApplicationCustomizer",
1111
"properties": {
1212
"header": "Header area of the page",
@@ -18,7 +18,7 @@
1818
"helloAppCustomizer": {
1919
"pageUrl": "https://contoso.sharepoint.com/sites/mySite/SitePages/myPage.aspx",
2020
"customActions": {
21-
"282553e9-90a8-44d5-905f-3a31bc5f45ce": {
21+
"e66200d1-7e31-4a99-92fd-f3a0d29a7226": {
2222
"location": "ClientSideExtension.ApplicationCustomizer",
2323
"properties": {
2424
"testMessage": "Test message"

0 commit comments

Comments
 (0)