.NET 6 Preview 3 is now available and includes many great new improvements to ASP.NET Core.
Here’s what’s new in this preview release:
SlabMemoryPool
BlazorWebView
controls for WPF & Windows FormsTo get started with ASP.NET Core in .NET 6 Preview 3, install the .NET 6 SDK.
If you’re on Windows using Visual Studio, we recommend installing the latest preview of Visual Studio 2019 16.10. If you’re on macOS, we recommend installing the latest preview of Visual Studio 2019 for Mac 8.10.
To upgrade an existing ASP.NET Core app from .NET 6 Preview 2 to .NET 6 Preview 3:
6.0.0-preview.3.*
.6.0.0-preview.3.*
.TryRedeemPersistedState
on ComponentApplicationState
to call TryTakePersistedState
instead.TryRedeemFromJson
on ComponentApplicationState
to call TryTakeAsJson
instead.See the full list of breaking changes in ASP.NET Core for .NET 6.
Thanks to a community contribution from Ben Adams the SignalR, MessagePack, and Blazor Server scripts are now significantly smaller, enabling smaller downloads, less JavaScript parsing and compiling by the browser, and faster start-up.
The download size reduction from this work is pretty phenomenal:
Library | Before | After | % | .br |
---|---|---|---|---|
signalr.min.js | 130 KB | 39 KB | 70% | 10 KB |
blazor.server.js | 212 KB | 116 KB | 45% | 28 KB |
You also now only need the @microsoft/signalr-protocol-msgpack
package for MessagePack; no need to include msgpack5
. This means you only need an additional 29 KB
rather than the earlier 140 KB
to use MessagePack instead of JSON.
Here’s how this size reduction was achieved:
class
)."sideEffects": false
so tree-shaking is more effective."es6-promise/dist/es6-promise.auto.js"
polyfill.es2019
rather than es5
and dropped the “es2015.promise” and “es2015.iterable” polyfills.msgpack5
from @msgpack/msgpack
as it requires less polyfills and is TypeScript & module aware.You can find more details on these changes in Ben’s pull request on GitHub.
We accepted a community contribution from Gabriel Lucaci to enable Redis profiling session with Microsoft.Extensions.Caching.StackExchangeRedis in this preview. For more details on Redis profiling, see the official documentation. The API can be used as follows:
services.AddStackExchangeRedisCache(options =>
{
options.ProfilingSession = () => new ProfilingSession();
})
Work is beginning to ramp up on support for HTTP/3 in .NET 6. HTTP/3 brings a number of advantages over existing HTTP protocols, including faster connection setup, and improved performance on low-quality networks.
New in this preview is the ability to configure TLS certificates on individual HTTP/3 ports with UseHttps
. This brings Kestrel’s HTTP/3 endpoint configuration in-line with HTTP/1.1 and HTTP/2.
.ConfigureKestrel((context, options) =>
{
options.EnableAltSvc = true;
options.Listen(IPAddress.Any, 5001, listenOptions =>
{
listenOptions.Protocols = HttpProtocols.Http3;
listenOptions.UseHttps(httpsOptions =>
{
httpsOptions.ServerCertificate = LoadCertificate();
});
});
})
Early support for .NET Hot Reload is now available for ASP.NET Core & Blazor projects using dotnet watch
. .NET Hot Reload applies code changes to your running app without restarting it and without losing app state.
To try out hot reload with an existing ASP.NET Core project based on .NET 6, add the "hotReloadProfile": "aspnetcore"
property to your launch profile in launchSettings.json. For Blazor WebAssembly projects, use the "blazorwasm"
hot reload profile.
Run the project using dotnet watch
. The output should indicate that hot reload is enabled:
watch : Hot reload enabled. For a list of supported edits, see https://aka.ms/dotnet/hot-reload. Press "Ctrl + R" to restart.
If at any point you want to force the app to rebuild and restart, you can do so by entering Ctrl+R at the console.
You can now start making edits to your code. As you save code changes, applicable changes are automatically hot reloaded into the running app almost instantaneously. Any app state in the running app is preserved.
You can hot reload changes to your CSS files too without needing to refresh the browser:
Some code changes aren’t supported with .NET Hot Reload. You can find a list of supported code edits in the docs. With Blazor WebAssembly only method body replacement is currently supported. We’re working to expand the set of supported edits in .NET 6. When dotnet watch
detects a change that cannot be applied using hot reload, it falls back to rebuilding and restarting the app.
This is just the beginning of hot reload support in .NET 6. Hot reload support for desktop and mobile apps will be available soon in an upcoming preview as well as integration of hot reload in Visual Studio.
The Razor compiler previously utilized a two-step compilation process that produced a separate Views assembly that contained the generated views and pages (.cshtml) defined in the application. The generated types were public and under the AspNetCore
namespace.
We’ve now updated the Razor compiler to build the views and pages types into the main project assembly. These types are now generated by default as internal sealed
in the AspNetCoreGeneratedDocument
namespace. This change improves build performance, enables single file deployment, and enables these types to participate in .NET Hot Reload.
For additional details about this change, see the related announcement issue on GitHub.
We’ve added a new feature in the ASP.NET Core Module for IIS to add support for shadow-copying your application assemblies. Currently .NET locks application binaries when running on Windows making it impossible to replace binaries when the application is still running. While our recommendation remains to use an app offline file, we recognize there are certain scenarios (for example FTP deployments) where it isn’t possible to do so.
In such scenarios, you can enable shadow copying by customizing the ASP.NET Core module handler settings. In most cases, ASP.NET Core application do not have a web.config checked into source control that you can modify (they are ordinarily generated by the SDK). You can add this sample web.config
to get started.
You require a new version of ASP.NET Core module to try to this feature. On a self-hosted IIS server, this requires a new version of the hosting bundle. On Azure App Services, you will be required to install a new ASP.NET Core runtime site extension
Vcpkg is a cross-platform command-line package manager for C and C++ libraries. We’ve recently added a port to vcpkg to add CMake native support (works with MSBuild projects as well) for the SignalR C++ client.
You can add the SignalR client to your CMake project with the following snippet (assuming you’ve already included the vcpkg toolchain file):
find_package(microsoft-signalr CONFIG REQUIRED)
link_libraries(microsoft-signalr::microsoft-signalr)
After this, the SignalR C++ client is ready to be #include’d and used in your project without any additional configuration. For a complete example of a C++ application that utilizes the SignalR C++ client, check out this repository.
For long running TLS connections where data is only occasionally sent back and forth, we’ve significantly reduced the memory footprint of ASP.NET Core apps in .NET 6. This should help improve the scalability of scenarios such as WebSocket servers. This was possible due to numerous improvements in System.IO.Pipelines
, SslStream
and Kestrel. Let’s look at some of the improvements that have contributed to this scenario:
System.IO.Pipelines.Pipe
For every connection that we establish, we allocate two pipes in Kestrel: one from the transport layer to the application for the request and another from the application layer to the transport for the response. By shrinking the size of System.IO.Pipelines.Pipe
from 368 bytes to 264 bytes (~28.2%), we’re saving 208 bytes per connection (104 bytes per Pipe).
SocketSender
SocketSender
objects (that subclass SocketAsyncEventArgs
) are around 350 bytes at runtime. Instead of allocating a new SocketSender
object per connection, we can pool them since sends are usually very fast and we can reduce the per connection overhead. Instead of paying 350 bytes per connection, we now only pay 350 bytes per IOQueue
(one per queue to avoid contention). In our WebSocket server with 5000 idle connections we went from allocating ~1.75 MB (350 bytes * 5000) to now allocating just ~2.8kb (350 bytes * 8) for SocketSender
objects.
SslStream
Bufferless reads are a technique we already employ in ASP.NET Core to avoid renting memory from the memory pool if there’s no data available on the socket. Prior to this change, our WebSocket server with 5000 idle connections required ~200 MB without TLS compared to ~800 MB with TLS. Some of these allocations (4k per connection) were from Kestrel having to hold on to an ArrayPool buffer while waiting for the reads on SslStream to complete. Given that these connections were idle, none of reads completed and return their buffers to the ArrayPool forcing the ArrayPool to allocate more memory. The remaining allocations were in SslStream
itself: 4k buffer for TLS handshakes and 32k buffer for normal reads. In preview3, when the user performs a zero byte read on SslStream and it has no data available, SslStream
will internally perform a zero-byte read on the underlying wrapped stream. In the best case (idle connection), these changes result in a savings of 40 Kb per connection while still allowing the consumer (Kestrel) to be notified when data is available without holding on to any unused buffers.
PipeReader
Once SslStream
supported bufferless reads, we then added the option to perform zero byte reads to StreamPipeReader
, the internal type that adapts a Stream
into a PipeReader
. In Kestrel, we use a StreamPipeReader
to adapt the underlying SslStream
into a PipeReader
and it was necessary to expose these zero byte read semantics on the PipeReader
.
You can now create a PipeReader
that supports zero bytes reads over any underlying Stream
that supports zero byte read semantics (e.g,. SslStream
, NetworkStream
, etc) using the following API:
var reader = PipeReader.Create(stream, new StreamPipeReaderOptions(useZeroByteReads: true));
SlabMemoryPool
To reduce fragmentation of the heap, Kestrel employed a technique where it allocated slabs of memory of 128 KB as part of it’s memory pool. The slabs were then further divided into 4 KB blocks that were used by Kestrel internally. The slabs had to be larger than 85 KB to force allocation on the large object heap to try and prevent the GC from relocating this array. However, with the introduction of the new GC generation, Pinned Object Heap (POH), it no longer makes sense to allocate blocks on slab. In preview3, we now directly allocate blocks on the POH, reducing the complexity involved in managing our own memory pool. This change should make easier to perform future improvements such as making it easier to shrink the memory pool used by Kestrel.
BlazorWebView
controls for WPF & Windows FormsFor .NET 6 we are adding support for building cross-platform hybrid desktop apps using .NET MAUI and Blazor. Hybrid apps are native apps that leverage web technologies for their functionality. For example, a hybrid app might use an embedded web view control to render web UI. This means you can write your app UI using web technologies like HTML & CSS, while also leveraging native device capabilities. We will be introducing support for building hybrid apps with .NET MAUI and Blazor in an upcoming .NET 6 preview release.
In this release, we’ve introduced BlazorWebView
controls for WPF and Windows Forms apps that enable embedding Blazor functionality into existing Windows desktop apps based on .NET 6. Using Blazor and a hybrid approach you can start decoupling your UI investments from WPF & Windows Forms. This is a great way to modernize existing desktop apps in a way that can be brought forward onto .NET MAUI or used on the web. You can use Blazor to modernize your existing Windows Forms and WPF apps while leveraging your existing .NET investments.
To use the new BlazorWebView
controls, you first need to make sure that you have WebView2 installed.
To add Blazor functionality to an existing Windows Forms app:
Microsoft.NET.Sdk.Razor
.{PROJECT NAME}
with the actual project name:
Blazor app
An unhandled error has occurred.
Reload
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.valid.modified:not([type=checkbox]) {
outline: 1px solid #26b050;
}
.invalid {
outline: 1px solid red;
}
.validation-message {
color: red;
}
#blazor-error-ui {
background: lightyellow;
bottom: 0;
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
display: none;
left: 0;
padding: 0.6rem 1.25rem 0.7rem 1.25rem;
position: fixed;
width: 100%;
z-index: 1000;
}
#blazor-error-ui .dismiss {
cursor: pointer;
position: absolute;
right: 0.75rem;
top: 0.5rem;
}
@using Microsoft.AspNetCore.Components.Web
Counter
The current count is: @currentCount
@code {
int currentCount = 0;
void IncrementCount()
{
currentCount++;
}
}
BlazorWebView
control to the desired form to render the root Blazor component:var serviceCollection = new ServiceCollection();
serviceCollection.AddBlazorWebView();
var blazor = new BlazorWebView()
{
Dock = DockStyle.Fill,
HostPage = "wwwroot/index.html",
Services = serviceCollection.BuildServiceProvider(),
};
blazor.RootComponents.Add("#app");
Controls.Add(blazor);
BlazorWebView
in action:To add Blazor functionality to an existing WPF app, follow the same steps listed above for Windows Forms apps, except:
BlazorWebView
control in XAML:
MainWindow.xaml.cs
):var serviceCollection = new ServiceCollection();
serviceCollection.AddBlazorWebView();
Resources.Add("services", serviceCollection.BuildServiceProvider());
public partial class Counter { }
We hope you enjoy this preview release of ASP.NET Core in .NET 6. We’re eager to hear about your experiences with this release. Let us know what you think by filing issues on GitHub.
Thanks for trying out ASP.NET Core!