Skip to content
Merged
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
2 changes: 1 addition & 1 deletion aspnetcore/release-notes/aspnetcore-11.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: wadepickett
description: Learn about the new features in ASP.NET Core in .NET 11.
ms.author: wpickett
ms.custom: mvc
ms.date: 03/10/2026
ms.date: 03/13/2026
uid: aspnetcore-11
---
# What's new in ASP.NET Core in .NET 11
Expand Down
6 changes: 5 additions & 1 deletion aspnetcore/release-notes/aspnetcore-11/includes/blazor.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,8 @@ TempData is available when <xref:Microsoft.Extensions.DependencyInjection.RazorC
public ITempData? TempData { get; set; }
```

For more information, see <xref:blazor/state-management/server#server-side-storage>.
For more information, see <xref:blazor/state-management/server?view=aspnetcore-11.0#server-side-storage>.

### New Web Worker template (`webworker`)

Blazor WebAssembly apps can perform heavy computing on the client, but doing so on the UI thread interferes with UI rendering and negatively affects the user experience. In .NET 10, we added an article with a sample app to make offloading heavy work from the UI thread to a Web Worker easier. For .NET 11, we've added the .NET Web Worker project template (`webworker`), which provides infrastructure for running .NET code in a Web Worker. For more information, see <xref:blazor/blazor-web-workers?view=aspnetcore-11.0>.
Loading