Skip to content

Commit 92e277a

Browse files
authored
Merge branch 'main' into gurardrex/blazor-split-routing-and-navigaton
2 parents a0bd2c2 + ade1447 commit 92e277a

File tree

166 files changed

+412
-345
lines changed

Some content is hidden

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

166 files changed

+412
-345
lines changed

aspnetcore/blazor/advanced-scenarios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to incorporate manual logic for building Blazor render tr
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/advanced-scenarios
1010
---
1111
# ASP.NET Core Blazor advanced scenarios (render tree construction)

aspnetcore/blazor/blazor-ef-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use Entity Framework Core (EF Core) in Blazor apps.
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 01/16/2025
8+
ms.date: 11/11/2025
99
uid: blazor/blazor-ef-core
1010
---
1111
# ASP.NET Core Blazor with Entity Framework Core (EF Core)

aspnetcore/blazor/call-web-api.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to call a web API from Blazor apps.
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 07/29/2025
8+
ms.date: 11/11/2025
99
uid: blazor/call-web-api
1010
---
1111
# Call a web API from ASP.NET Core Blazor
@@ -851,9 +851,7 @@ To simplify the creation of PATCH documents in the app issuing PATCH requests, a
851851
852852
:::moniker range=">= aspnetcore-10.0"
853853
854-
<!-- UPDATE 10.0 - API doc cross-link -->
855-
856-
Install the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package and use the API features of the package to compose a `JsonPatchDocument` for a PATCH request.
854+
Install the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package and use the API features of the package to compose a <xref:Microsoft.AspNetCore.JsonPatch.JsonPatchDocument> for a PATCH request.
857855
858856
[!INCLUDE[](~/includes/package-reference.md)]
859857
@@ -924,11 +922,9 @@ Follow the guidance in the <xref:web-api/jsonpatch> article to add a PATCH contr
924922
925923
:::moniker range=">= aspnetcore-10.0"
926924
927-
<!-- UPDATE 10.0 - API doc cross-link -->
928-
929-
Add a package reference for the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.NewtonsoftJson) NuGet package to the web API app.
925+
Add a package reference for the [`Microsoft.AspNetCore.JsonPatch.SystemTextJson`](https://www.nuget.org/packages/Microsoft.AspNetCore.JsonPatch.SystemTextJson) NuGet package to the web API app.
930926
931-
In the `Program` file add an `@using` directive for the `Microsoft.AspNetCore.JsonPatch.SystemTextJson` <!-- <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson?displayProperty=fullName> --> namespace:
927+
In the `Program` file add an `@using` directive for the <xref:Microsoft.AspNetCore.JsonPatch.SystemTextJson?displayProperty=fullName> namespace:
932928
933929
```csharp
934930
using Microsoft.AspNetCore.JsonPatch.SystemTextJson;

aspnetcore/blazor/components/built-in-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Find information on Razor components provided by the Blazor framewo
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/built-in-components
1010
---
1111
# ASP.NET Core built-in Razor components

aspnetcore/blazor/components/cascading-values-and-parameters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to flow data from an ancestor Razor component to descende
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/cascading-values-and-parameters
1010
---
1111
# ASP.NET Core Blazor cascading values and parameters

aspnetcore/blazor/components/class-libraries-and-static-server-side-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how component authors can support static server-side renderin
55
monikerRange: '>= aspnetcore-8.0'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/class-libraries-with-static-ssr
1010
---
1111
# ASP.NET Core Razor class libraries (RCLs) with static server-side rendering (static SSR)

aspnetcore/blazor/components/class-libraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Discover how components can be included in Blazor apps from an exte
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/class-libraries
1010
---
1111
# Consume ASP.NET Core Razor components from a Razor class library (RCL)

aspnetcore/blazor/components/component-disposal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn about ASP.NET Core Razor component component disposal with ID
55
monikerRange: '>= aspnetcore-3.1'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 03/18/2025
8+
ms.date: 11/11/2025
99
uid: blazor/components/component-disposal
1010
---
1111
# ASP.NET Core Razor component disposal

aspnetcore/blazor/components/control-head-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to control head content in Blazor apps, including how to
55
monikerRange: '>= aspnetcore-6.0'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/control-head-content
1010
---
1111
# Control `<head>` content in ASP.NET Core Blazor apps

aspnetcore/blazor/components/css-isolation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how CSS isolation scopes CSS to Razor components, which can s
55
monikerRange: '>= aspnetcore-5.0'
66
ms.author: wpickett
77
ms.custom: mvc
8-
ms.date: 11/12/2024
8+
ms.date: 11/11/2025
99
uid: blazor/components/css-isolation
1010
---
1111
# ASP.NET Core Blazor CSS isolation

0 commit comments

Comments
 (0)