Skip to content

Commit a6049e1

Browse files
author
Harminder Singh
committed
changes related to refererence update related to SPFx 1.18.x
1 parent 8c57db6 commit a6049e1

12 files changed

+24
-24
lines changed

docs/spfx/debug-modern-pages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Debug SharePoint Framework solutions on modern SharePoint pages
33
description: Guidance on how to debug SharePoint Framework solutions on modern SharePoint pages
4-
ms.date: 02/10/2022
4+
ms.date: 12/14/2023
55
ms.localizationpriority: high
66
---
77
# Debug SharePoint Framework solutions on modern SharePoint pages
@@ -25,7 +25,7 @@ When you add a new SharePoint Framework extension to your project, the SharePoin
2525

2626
```json
2727
{
28-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
28+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
2929
"port": 4321,
3030
"https": true,
3131
"serveConfigurations": {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first SharePoint Framework Extension (Hello World part 1)
33
description: Create an extension project, and then code and debug your Application Customizer.
4-
ms.date: 06/13/2022
4+
ms.date: 12/4/2023
55
ms.localizationpriority: high
66
ms.custom: scenarios:getting-started
77
---
@@ -143,7 +143,7 @@ You can't use the SharePoint Workbench to test SharePoint Framework Extensions.
143143

144144
```json
145145
{
146-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
146+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
147147
"port": 4321,
148148
"https": true,
149149
"serveConfigurations": {

docs/spfx/extensions/get-started/building-form-customizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first Form customizer extension
33
description: Form customizers are SharePoint Framework components giving you an option to override the form experience in a list or library level by associating the component to the used content type.
4-
ms.date: 07/21/2022
4+
ms.date: 12/14/2023
55
ms.custom: scenarios:getting-started
66
---
77

@@ -124,7 +124,7 @@ You can test and debug your Form Customizer within a live SharePoint Online site
124124

125125
```json
126126
{
127-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
127+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
128128
"port": 4321,
129129
"https": true,
130130
"serveConfigurations": {

docs/spfx/extensions/get-started/building-simple-cmdset-with-dialog-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first ListView Command Set extension
33
description: Create an extension project, and then code and debug your extension by using SharePoint Framework (SPFx) Extensions.
4-
ms.date: 11/22/2022
4+
ms.date: 12/14/2023
55
ms.custom: scenarios:getting-started
66
---
77
# Build your first ListView Command Set extension
@@ -150,7 +150,7 @@ You cannot currently use the local Workbench to test SharePoint Framework Extens
150150

151151
```json
152152
{
153-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
153+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
154154
"port": 4321,
155155
"https": true,
156156
"serveConfigurations": {

docs/spfx/extensions/get-started/building-simple-field-customizer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first Field Customizer extension
33
description: Extensions are client-side components that run inside the context of a SharePoint page. Extensions can be deployed to SharePoint Online, and you can use modern JavaScript tools and libraries to build them.
4-
ms.date: 11/22/2022
4+
ms.date: 12/14/2023
55
ms.custom: scenarios:getting-started
66
---
77

@@ -128,7 +128,7 @@ You can't use the local Workbench to test SharePoint Framework Extensions. You n
128128

129129
```json
130130
{
131-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
131+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
132132
"port": 4321,
133133
"https": true,
134134
"serveConfigurations": {

docs/spfx/extensions/get-started/using-page-placeholder-with-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use page placeholders from Application Customizer (Hello World part 2)
33
description: Extend your Hello World extension to take advantage of page placeholders by using SharePoint Framework (SPFx) Extensions.
4-
ms.date: 06/07/2022
4+
ms.date: 12/14/2023
55
ms.custom: scenarios:getting-started
66
---
77

@@ -250,7 +250,7 @@ You're now ready to test your code in SharePoint Online.
250250

251251
```json
252252
{
253-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
253+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
254254
"port": 4321,
255255
"https": true,
256256
"serveConfigurations": {

docs/spfx/viva/features/focus-feature/FocusFeatureTutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create an Adaptive Card Extension with the focus feature
33
description: Step by step guide on how to create an Adaptive Card Extension with the focus feature.
4-
ms.date: 04/04/2023
4+
ms.date: 12/14/2023
55
ms.localizationpriority: high
66
---
77
# Create an Adaptive Card Extension with focus feature
@@ -66,7 +66,7 @@ When you use the gulp task **serve**, by default it will launch a browser with t
6666

6767
```json
6868
{
69-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
69+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
7070
"port": 4321,
7171
"https": true,
7272
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"

docs/spfx/viva/get-started/actions/geolocation/GeolocationTutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create an Adaptive Card Extension with geolocation action
33
description: Step by step guide on creating Adaptive Card Extension for Geolocation action.
4-
ms.date: 09/12/2023
4+
ms.date: 12/14/2023
55
ms.localizationpriority: high
66
---
77
# Create an Adaptive Card Extension with geolocation action
@@ -39,7 +39,7 @@ When you use the gulp task **serve**, by default it will launch a browser with t
3939

4040
```json
4141
{
42-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
42+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
4343
"port": 4321,
4444
"https": true,
4545
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"

docs/spfx/viva/get-started/actions/media-upload/MediaUploadTutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create an Adaptive Card Extension with the select media action
33
description: Step by step guide on how to create an Adaptive Card Extension with the select media action.
4-
ms.date: 03/08/2023
4+
ms.date: 12/14/2023
55
ms.localizationpriority: high
66
---
77
# Create an Adaptive Card Extension with select media action
@@ -34,7 +34,7 @@ When you use the gulp task **serve**, by default it will launch a browser with t
3434

3535
```json
3636
{
37-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
37+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
3838
"port": 4321,
3939
"https": true,
4040
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"

docs/spfx/viva/get-started/build-first-sharepoint-adaptive-card-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first SharePoint Adaptive Card Extension
33
description: Adaptive Card Extensions (ACEs) are a new SharePoint Framework component type, which enable developers to build rich, native extensions to Viva Connections' Dashboards and SharePoint Pages. In this tutorial, you'll build and explore your first ACE.
4-
ms.date: 09/12/2023
4+
ms.date: 12/14/2023
55
ms.localizationpriority: high
66
---
77
# Build your first SharePoint Adaptive Card Extension
@@ -39,7 +39,7 @@ When you use the gulp task **serve**, by default it will launch a browser with t
3939

4040
```json
4141
{
42-
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
42+
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
4343
"port": 4321,
4444
"https": true,
4545
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"

0 commit comments

Comments
 (0)