Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions aspnetcore/client-side/libman/libman-vs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)]

Expand Down
2 changes: 1 addition & 1 deletion aspnetcore/release-notes/aspnetcore-10.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
72 changes: 72 additions & 0 deletions aspnetcore/release-notes/aspnetcore-11.md
Original file line number Diff line number Diff line change
@@ -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

<!-- NOTE: Add the following to toc.yml when the
breaking changes article is put up ...

- name: Breaking changes
href: /dotnet/core/compatibility/10.0?toc=/aspnet/core/toc.json&bc=/aspnet/core/breadcrumb/toc.json#aspnet-core

-->

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.

<!-- HOLD - The 11.0 article hasn't been created yet ...

https://learn.microsoft.com/dotnet/core/compatibility/11.0#aspnet-core

For breaking changes, see [Breaking changes in .NET](/dotnet/core/compatibility/11.0#aspnet-core).

-->

## 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.

<!-- HOLD - The breaking changes article for 11.0 hasn't been created yet ...

https://learn.microsoft.com/dotnet/core/compatibility/breaking-changes

## Breaking changes

Use the articles in [Breaking changes in .NET](/dotnet/core/compatibility/breaking-changes) to find breaking changes that might apply when upgrading an app to a newer version of .NET.

-->
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*Release notes appear in this section as preview features become available.*
1 change: 1 addition & 0 deletions aspnetcore/release-notes/aspnetcore-11/includes/blazor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*Release notes appear in this section as preview features become available.*
4 changes: 4 additions & 0 deletions aspnetcore/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading