Create an account


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Blazor WebAssembly 3.2.0 now available

#1
Blazor WebAssembly 3.2.0 now available

<div style="margin: 5px 5% 10px 5%;"><img src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/blazor-webassembly-3-2-0-now-available.jpg" width="150" height="150" title="" alt="" /></div><div><div class="row justify-content-center">
<div class="col-md-4">
<div><img src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/blazor-webassembly-3-2-0-now-available.jpg" width="58" height="58" alt="Daniel Roth" class="avatar avatar-58 wp-user-avatar wp-user-avatar-58 alignnone photo"></p>
<p>Daniel</p>
</div>
</div>
</div>
<div class="entry-meta">
<p>May 19th, 2020</p>
</p></div>
<p><!-- .entry-meta --> </p>
<p>I’m thrilled to announce that Blazor WebAssembly is now officially released. This is a fully-featured and supported release of Blazor WebAssembly that is ready for production use. Full stack web development with .NET is now here!</p>
<h2>Get started</h2>
<p>Getting started with Blazor WebAssembly is easy: simply go to <a href="https://blazor.net">https://blazor.net</a> and install the latest <a href="https://dotnet.microsoft.com/download/dotnet-core/3.1">.NET Core SDK (3.1.300 or later)</a>, which includes everything you need to build and run Blazor WebAssembly apps.</p>
<p>You can then create and run your first Blazor WebAssembly app by running:</p>
<pre><code>dotnet new blazorwasm -o BlazorApp1
cd BlazorApp1
dotnet run
</code></pre>
<p>Browse to https://localhost:5001 and <em>voilà!</em> You’ve just built and run your first Blazor WebAssembly app!</p>
<p><a href="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/blazor-webassembly-3-2-0-now-available.png"> <img src="https://www.sickgaming.net/blog/wp-content/uploads/2020/05/blazor-webassembly-3-2-0-now-available.png" alt="Running Blazor WebAssembly app"></a></p>
<p>To maximize your Blazor productivity, be sure to install a supported version of Visual Studio for your platform of choice:</p>
<p>You can find additional docs and samples on <a href="https://blazor.net">https://blazor.net</a>.</p>
<h2>Upgrade an existing project</h2>
<p>If you already have an existing Blazor WebAssembly project, you can upgrade it from the 3.2.0 Release Candidate to the official 3.2.0 release by doing the following:</p>
<ul>
<li>Update all Microsoft.AspNetCore.Components.WebAssembly.* and System.Net.Http.Json package references to version 3.2.0.</li>
</ul>
<p>That’s it, you’re all set!</p>
<h2>What is Blazor WebAssembly?</h2>
<p>In case this is your first time learning about Blazor, let me introduce you to what Blazor WebAssembly is all about.</p>
<p>Blazor is an open source and cross-platform web UI framework for building single-page apps using .NET and C# instead of JavaScript. Blazor is based on a powerful and flexible component model for building rich interactive web UI. You implement Blazor UI components using a combination of .NET code and Razor syntax: an elegant melding of HTML and C#. Blazor components can seamlessly handle UI events, bind to user input, and efficiently render UI updates.</p>
<p>Blazor components can then be hosted in different ways to create your web app. The first supported way is called Blazor Server. In a Blazor Server app, the components run on the server using .NET Core. All UI interactions and updates are handled using a real-time WebSocket connection with the browser. Blazor Server apps are fast to load and simple to implement. Support for Blazor Server is available with .NET Core 3.1 LTS.</p>
<p>Blazor WebAssembly is now the second supported way to host your Blazor components: client-side in the browser using a WebAssembly-based .NET runtime. 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. No plugins or code transpilation are required. Blazor WebAssembly works with all modern web browsers, both desktop and mobile. Similar to JavaScript, Blazor WebAssembly apps run securely on the user’s device from within the browser’s security sandbox. These apps can be deployed as completely standalone static sites without any .NET server component at all, or they can be paired with ASP.NET Core to enable full stack web development with .NET, where code can be effortlessly shared with the client and server.</p>
<h2>Fully-featured</h2>
<p>Blazor WebAssembly comes packed with features to keep you productive on your next web app project:</p>
<h2>Blazor in action</h2>
<p>Blazor WebAssembly has everything you need to build fully-featured production web apps. To see all these Blazor WebAssembly features in action, checkout Steve Sanderson’s on-demand BUILD session (link should be live after 12pm PT): <a href="https://aka.ms/blazor-in-action">Modern Web UI with Blazor WebAssembly</a>.</p>
<h2>Ready-made components</h2>
<p>Of course, any web app is going to need beautiful and feature rich components. A variety of Blazor UI components are available from our fantastic partners that work great in any Blazor app, including Blazor WebAssembly apps:</p>
<h2>Open-source community</h2>
<p>Blazor also has a thriving open-source community and ecosystem. Members of the community, (folks just like you!) have built lots of great component libraries, interop libraries, test frameworks, and more, and then made them freely available for you to use. Some great examples include:</p>
<p>You can find these community projects and many others listed on the <a href="https://aka.ms/awesomeblazor">Awesome Blazor GitHub repo</a>.</p>
<h2>LTS or Current?</h2>
<p>Blazor WebAssembly 3.2.0 is a fully supported release under the <a href="https://dotnet.microsoft.com/platform/support/policy/dotnet-core">.NET Core Support Policy</a>. Since this is the first release of Blazor WebAssembly, it is a Current release, not an LTS release; it does not the inherit LTS status of .NET Core 3.1. This means that once Blazor WebAssembly ships with .NET 5 later this year, you will need to upgrade to .NET 5 to stay in support. We expect Blazor in .NET 5 to be a highly compatible release.</p>
<h2>What’s next?</h2>
<p>Now that we have shipped Blazor WebAssembly, we are shifting our attention to .NET 5. Work has already started on making Blazor WebAssembly available with .NET 5, which we expect to complete for preview next month.</p>
<p>We also have a number of Blazor features and improvements that we are investigating for the .NET 5 &amp; 6 wave. You can see the list of core deliverables that we are considering in the <a href="https://github.com/dotnet/aspnetcore/issues/21514">Blazor Roadmap for .NET 5</a> issue on GitHub. Please note that we consider this list to be highly aspirational. While we hope to deliver all of the improvements listed, there are still many unknown and plans will certainly change as we go. We also expect that there will be plenty of smaller improvements that we will deliver as well.</p>
<p>We are also continuing to collaborate with our friends on the Xamarin team on experimental support for building native UI using Blazor through the <a href="https://aka.ms/mobile-blazor-bindings">Mobile Blazor Bindings</a> project. This includes some early efforts to explore building hybrid UI for native apps, which we hope to share more about soon.</p>
<h2>Thank you</h2>
<p>We sincerely appreciate all the enthusiastic support we have received from the Blazor community as we’ve worked to make the release a reality. The number of Blazor articles, blog posts, docs, sample apps, libraries, books, videos, presentations, workshops, courses, meetups, feature suggestions, and feedback issues that have been contributed by the community to the Blazor ecosystem even while it was still in preview has been truly outstanding. To everyone who helped make this release possible, thank you! We couldn’t have done it without you.</p>
<h2>Try Blazor today</h2>
<p>We hope you enjoy this release of Blazor WebAssembly. Give Blazor a try today by going to <a href="https://blazor.net">https://blazor.net</a>. We look forward to seeing what you create with it.</p>
<p>As always, if you have any questions of feedback about Blazor please let us know by <a href="https://github.com/dotnet/aspnetcore/issues">filing an issue on GitHub</a>.</p>
</div>


https://www.sickgaming.net/blog/2020/05/...available/
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Forum software by © MyBB Theme © iAndrew 2016