News

Blazor WebAssembly Template Lands in .NET 5 Preview 6

Microsoft shipped Preview 6 of the unifying .NET 5 framework, with several updates being added to the web site development component of the framework -- ASP.NET Core -- including the addition of a Blazor WebAssembly template.

.NET 5 is designed to combine everything .NET so "there will be just one .NET going forward, and you will be able to use it to target Windows, Linux, macOS, iOS, Android, tvOS, watchOS and WebAssembly and more."

In that new scheme, one hot topic in the .NET developer community is Blazor, because it allows coding browser/web apps with C# instead of JavaScript, which is used almost universally in the rest of the webdev ecosystem. Blazor WebAssembly is the client-side part of that effort.

Due to tricky problems encountered with using WebAssembly in .NET browser apps, Blazor WebAssembly trailed its server-side component -- Blazor Server -- by many months, finally being announced as being complete just last month.

"Blazor WebAssembly is now the second supported way to host your Blazor components: client-side in the browser using a WebAssembly-based .NET runtime," Microsoft said last month. "Blazor WebAssembly includes a proper .NET runtime implemented in WebAssembly, a standardized bytecode for the web. This .NET runtime is downloaded with your Blazor WebAssembly app and enables running normal .NET code directly in the browser."

In a June 26 blog post announcing ASP.NET Core updates in the new .NET 5 Preview 6, Microsoft's Sourabh Shirhatti highlighted the addition of the Blazor WebAssembly template.

"The Blazor WebAssembly template is now included in the .NET 5 SDK along with the Blazor Server template," Shirhatti said. "To create a Blazor WebAssembly project, simply run dotnet new blazorwasm."

Other relatively minor ASP.NET Core highlights of the release -- .NET 5 is only 2 previews away from being deemed feature complete -- include:

  • JSON extension methods for HttpRequest and HttpResponse: Developers can now easily read and write JSON data from HttpRequest and HttpResponse using the new ReadFromJsonAsync and WriteAsJsonAsync extension methods, which use the System.Text.Json serializer to handle the JSON data.
  • Extension method to allow anonymous access to an endpoint: Developers now have the ability to allow anonymous access to an endpoint using the simpler AllowAnonymous extension method when using endpoint routing.
  • Custom handling of authorization failures: The team eased the custom handling of authorization failures by adding the new IAuthorizationMiddlewareResultHandler interface, invoked by the AuthorizationMiddleware. "The default implementation remains the same, but a custom handler can be be registered in DI which allows things like custom HTTP responses based on why authorization failed."
  • SignalR Hub filters: SignalR allows server code to send asynchronous notifications to client-side web applications. ASP.NET lets developers' server-side code push content in real-time to connected clients with the help of client SDKs for JavaScript, .NET (C#, F#, and VB), and Java. In the new update, Hub filters -- called Hub pipelines in ASP.NET SignalR -- allows developers to run code before and after Hub methods are called, similar to how middleware allows running code before and after an HTTP request. This is useful for things like logging, error handling, and argument validation.

More information is available in the .NET 5 Preview 6 release notes, along with a list of breaking changes.

About the Author

David Ramel is an editor and writer at Converge 360.

comments powered by Disqus

Featured

  • Using Local AI to Cut Copilot Usage-Based Billing Shock

    After being gobsmacked by the new billing plan using almost all my monthly credits in one or two days, I tried pushing some Copilot-style coding work onto local models in VS Code. What I found was less "free AI" and more "pick your pain": cloud charges on one side, heavy local resource use and long waits on the other.

  • .NET 11 Preview 5 Focuses on Performance, Productivity and Safer Code

    .NET 11 Preview 5 focuses on under-the-hood runtime performance gains, streamlined APIs and language features that reduce boilerplate, plus built‑in security checks and incremental ASP.NET Core and EF Core improvements aimed at everyday developer productivity.

  • VS Code 1.124 Focuses on Agent Autonomy and Parallel Sessions

    Microsoft's June 2026 VS Code update turns on Autopilot by default and adds background sending for agent sessions.

  • Developing Agentic Systems in .NET: From Concept to Code

    ZioNet founder Alon Fliess previews his Visual Studio Live! San Diego session on building true agentic systems in .NET -- covering the cognitive loop, MCP tool integration, multi-agent orchestration and enterprise hosting and governance with the Microsoft Agent Framework.

Subscribe on YouTube