From ce91f4fc99a788b3d43dcb38513c40f176c66c08 Mon Sep 17 00:00:00 2001 From: manuelra Date: Wed, 3 Dec 2025 16:59:08 +0000 Subject: [PATCH 1/2] Update libman-vs.md - Remove mention to lodash.json (#36410) * Update libman-vs.md - Remove mention to lodash.json lodash.json is not one of the object literals included within the the libman.json "libraries" element. * Update LibMan documentation date to December 2025 Update ms.date --------- Co-authored-by: Wade Pickett --- aspnetcore/client-side/libman/libman-vs.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aspnetcore/client-side/libman/libman-vs.md b/aspnetcore/client-side/libman/libman-vs.md index 6eb2bc5bfef4..c59f7c6fc6f8 100644 --- a/aspnetcore/client-side/libman/libman-vs.md +++ b/aspnetcore/client-side/libman/libman-vs.md @@ -4,7 +4,7 @@ author: wadepickett description: Learn how to use LibMan in an ASP.NET Core project with Visual Studio. ms.author: wpickett ms.custom: mvc -ms.date: 08/20/2018 +ms.date: 12/03/2025 uid: client-side/libman/libman-vs --- # Use LibMan with ASP.NET Core in Visual Studio @@ -94,7 +94,6 @@ With the following manifest file, LibMan retrieves files per the configuration d * A subset of [jQuery](https://jquery.com/) version 3.3.1 is retrieved from the CDNJS provider. The subset is defined in the `files` property—`jquery.min.js`, `jquery.js`, and *jquery.min.map*. The files are placed in the project's *wwwroot/lib/jquery* folder. * The entirety of [Bootstrap](https://getbootstrap.com/) version 4.1.3 is retrieved and placed in a *wwwroot/lib/bootstrap* folder. The object literal's `provider` property overrides the `defaultProvider` property value. LibMan retrieves the Bootstrap files from the unpkg provider. -* A subset of [Lodash](https://lodash.com/) was approved by a governing body within the organization. The `lodash.js` and `lodash.min.js` files are retrieved from the local file system at *C:\\temp\\lodash\\*. The files are copied to the project's *wwwroot/lib/lodash* folder. [!code-json[](samples/LibManSample/libman.json)] From e397e98b20031496b3a1e2dd4ad53416f7d6618c Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Thu, 4 Dec 2025 12:39:29 -0500 Subject: [PATCH 2/2] Add 11.0 release notes (#36440) --- aspnetcore/release-notes/aspnetcore-10.0.md | 2 +- aspnetcore/release-notes/aspnetcore-11.md | 72 +++++++++++++++++++ .../aspnetcore-11/includes/blazor-hybrid.md | 1 + .../aspnetcore-11/includes/blazor.md | 1 + aspnetcore/toc.yml | 4 ++ 5 files changed, 79 insertions(+), 1 deletion(-) create mode 100644 aspnetcore/release-notes/aspnetcore-11.md create mode 100644 aspnetcore/release-notes/aspnetcore-11/includes/blazor-hybrid.md create mode 100644 aspnetcore/release-notes/aspnetcore-11/includes/blazor.md diff --git a/aspnetcore/release-notes/aspnetcore-10.0.md b/aspnetcore/release-notes/aspnetcore-10.0.md index 160eab18adc2..281cad22a986 100644 --- a/aspnetcore/release-notes/aspnetcore-10.0.md +++ b/aspnetcore/release-notes/aspnetcore-10.0.md @@ -11,7 +11,7 @@ uid: aspnetcore-10 This article highlights the most significant changes in ASP.NET Core in .NET 10 with links to relevant documentation. -This article will be updated as new preview releases are made available. For breaking changes, see [Breaking changes in .NET](/dotnet/core/compatibility/10.0#aspnet-core). +For breaking changes, see [Breaking changes in .NET](/dotnet/core/compatibility/10.0#aspnet-core). ## Blazor diff --git a/aspnetcore/release-notes/aspnetcore-11.md b/aspnetcore/release-notes/aspnetcore-11.md new file mode 100644 index 000000000000..bf034493d513 --- /dev/null +++ b/aspnetcore/release-notes/aspnetcore-11.md @@ -0,0 +1,72 @@ +--- +title: What's new in ASP.NET Core in .NET 11 +author: wadepickett +description: Learn about the new features in ASP.NET Core in .NET 11. +ms.author: wpickett +ms.custom: mvc +ms.date: 12/04/2025 +uid: aspnetcore-11 +--- +# What's new in ASP.NET Core in .NET 11 + + + +This article highlights the most significant changes in ASP.NET Core in .NET 11 with links to relevant documentation. + +This article will be updated as new preview releases are made available. + + + +## Blazor + +This section describes new features for Blazor. + +[!INCLUDE[](~/release-notes/aspnetcore-11/includes/blazor.md)] + +## Blazor Hybrid + +This section describes new features for Blazor Hybrid. + +[!INCLUDE[](~/release-notes/aspnetcore-11/includes/blazor-hybrid.md)] + +## SignalR + +This section describes new features for SignalR. + +## Minimal APIs + +This section describes new features for minimal APIs. + +## OpenAPI + +This section describes new features for OpenAPI. + +## Authentication and authorization + +This section describes new features for authentication and authorization. + +## Miscellaneous + +This section describes miscellaneous new features in .NET 11. + + diff --git a/aspnetcore/release-notes/aspnetcore-11/includes/blazor-hybrid.md b/aspnetcore/release-notes/aspnetcore-11/includes/blazor-hybrid.md new file mode 100644 index 000000000000..41a6e5682a8e --- /dev/null +++ b/aspnetcore/release-notes/aspnetcore-11/includes/blazor-hybrid.md @@ -0,0 +1 @@ +*Release notes appear in this section as preview features become available.* diff --git a/aspnetcore/release-notes/aspnetcore-11/includes/blazor.md b/aspnetcore/release-notes/aspnetcore-11/includes/blazor.md new file mode 100644 index 000000000000..41a6e5682a8e --- /dev/null +++ b/aspnetcore/release-notes/aspnetcore-11/includes/blazor.md @@ -0,0 +1 @@ +*Release notes appear in this section as preview features become available.* diff --git a/aspnetcore/toc.yml b/aspnetcore/toc.yml index 9082816f8e04..5881c94e8cdb 100644 --- a/aspnetcore/toc.yml +++ b/aspnetcore/toc.yml @@ -7,6 +7,10 @@ items: uid: get-started - name: What's new items: + - name: ASP.NET Core 11 + items: + - name: What's new in 11 + uid: aspnetcore-11 - name: ASP.NET Core 10 items: - name: What's new in 10