--- title: "ASP.NET Update: Blazor WebAssembly 3.2.0 Released" url: "https://ansibytecode.com/asp-net-update-blazor-webassembly-3-2-0-released/" date: "2020-07-25T05:37:10+00:00" modified: "2025-08-12T07:38:04+00:00" type: "Article" resource: "https://ansibytecode.com/asp-net-update-blazor-webassembly-3-2-0-released/" timestamp: "2025-08-12T07:38:04+00:00" author: name: "Nishant Desai" url: "https://ansibytecode.com" categories: - "ASP.NET Core" word_count: 586 reading_time: "3 min read" summary: "The Blazor WebAssembly Release Candidate (RC) that includes all the breaking improvements and amazing features is right here. Custom boot resource loading and API referencing docs are the two impor..." description: "The Blazor WebAssembly Release Candidate (RC) that includes all the breaking improvements and amazing features is right here." keywords: "ASP.NET Core" language: "en" schema_type: "Article" related_posts: - title: ".NET Core Most Popular Opensource Framework of the Developer Community" url: "https://ansibytecode.com/net-core-most-popular-opensource-framework/" - title: "Bundling and Minification" url: "https://ansibytecode.com/bundling-and-minification/" - title: "What’s New in .NET 10: A Complete Overview" url: "https://ansibytecode.com/whats-new-in-net-10-a-complete-overview/" --- # ASP.NET Update: Blazor WebAssembly 3.2.0 Released _Published: July 25, 2020_ _Author: Nishant Desai_ ![Ansi ByteCode LLP | Blazor Web Assembly](https://ansibytecode.com/wp-content/uploads/2023/11/Blazor-WebAssembly-1-690x460-1.jpg) The Blazor [WebAssembly Release Candidate (RC)](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-now-available/) that includes all the breaking improvements and amazing features is right here. Custom boot resource loading and API referencing docs are the two important features in this release. But before going deeper, let’s take an overview of Blazor and WebAssembly. ### Blazor: ASP.NET Feature Blazor is an [essential characteristic of ASP.NET](https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor), the most prevalent and enchanting framework of web development that expands the roots of .NET development platform through diverse tools and libraries for developing web apps. Through Blazor, you can build interactive and friendly web UIs by exploiting [C#](https://docs.microsoft.com/en-us/dotnet/csharp/) instead of using JavaScript. Apps based on Blazor contain reusable web UI components and executed using C#, [HTML](https://html.com/) along with [CSS](https://www.w3schools.com/whatis/whatis_css.asp). Since the code of client and server is completed by the C # platform, it helps the users to fuse code and libraries. ### Blazor WebAssembly Blazor can execute client-side C # code in their [browser with WebAssembly](https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor). Moreover, it is a real .NET executing and running on WebAssembly, enabling the users to re-use the code, tools or libraries again and again from the server-side parts of the application. And not only this, Blazor allows user to execute client logic on the server as well. The environment of real-time messaging infrastructure can be implemented by sending client UI events back to the server mode, using [SignalR](https://ansibytecode.com/development-with-asp-core/). After the execution on the server-side, all the necessary changes related to UI are then transferred to the client and fused into the [Direct Object Model (DOM).](https://www.w3.org/TR/REC-DOM-Level-1/introduction.html#:~:text=The%20Document%20Object%20Model%20(DOM,document%20is%20accessed%20and%20manipulated.&text=The%20DOM%20is%20designed%20to%20be%20used%20with%20any%20programming%20language.) #### Some other leveraging characteristics of Blazor WebAssembly are as follows; 1. Potential to analyze the productivity of C # and runtime typing2. It follows the steady and established .NET ecosystem3. It shares the component model with Blazor server applications4. Developers can build apps as a standalone static site or host with [ASP.NET Core](https://ansibytecode.com/best-practices-of-dependency-injection-in-asp-net-core/) 5. Complete support for authentication, globalization and localization6. Deployment of [PWA (Progressive Web Applications](https://docs.microsoft.com/en-us/aspnet/core/blazor/progressive-web-app?view=aspnetcore-3.1&tabs=visual-studio)) with offline features and native OS assimilation7. Configuration of app based on the environment8. Full-stack debugging9. [IL (Intermediate Language) trimming](https://docs.microsoft.com/en-us/aspnet/core/blazor/progressive-web-app?view=aspnetcore-3.1&tabs=visual-studio) 10. [Build-time precompression](https://docs.microsoft.com/en-gb/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-3.1#brotli-precompression) ### WebAssembly 3.2.0 Updates A Senior Program Manager on the ASP.NET team at Microsoft, Daniel Roth, stated two exclusive features in the [WebAssembly 3.2.0 Updates](https://devblogs.microsoft.com/aspnet/blazor-webassembly-3-2-0-release-candidate-now-available/); ### **Custom Boost Resource Loading**: with this feature, developers can now customize the boot resources loaded with a new API (Application Programming Interface). .NET runtime, essential .NET assemblies, bootstrapping JavaScript code, locale-specific data are all the boot resources. The API lets the developers in making changes, modifications and alterations to construct the outbound requests. In this way, if the developers want to load resources from outer [CDN (Content Delivery Network)](https://www.webopedia.com/TERM/C/CDN.html#:~:text=CDN%20is%20short%20for%20content,and%20the%20content%20delivery%20server.) to internal CDN, they are no restrictions in doing so. Users can utilize LoadBootResource [for the following cases](https://docs.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/webassembly?view=aspnetcore-3.1); 1. To load static resources, including time zone data from a CDN2. To load compressed assemblies while using an HTTP request and then decompressed these assemblies on the client-side. It helps those hosts that don’t support or fetch compressing contents from servers.3. Code-named resources to a changed name by readdressing each fetch request to a new one. #### **API Reference Docs**: The documentation of API for Blazor WebAssembly namespaces are now accessible from .NET API browser as a part of the ASP.NET Core 3.1 API documentation. All the five previews of Blazor WebAssembly enhance client-side apps performance, enables improved integrations with Visual Studio and updates IntelliSense documentation. According to Roth, all the important changes and features have been released till now and no further alterations are required at this point, meaning that all the productions of Blazor WebAssembly are ready! --- _View the original post at: [https://ansibytecode.com/asp-net-update-blazor-webassembly-3-2-0-released/](https://ansibytecode.com/asp-net-update-blazor-webassembly-3-2-0-released/)_ _Served as markdown by [Third Audience](https://github.com/third-audience) v3.6.1_ _Generated: 2026-06-27 21:30:51 UTC_