BlazorNative.Runtime 0.5.1

dotnet add package BlazorNative.Runtime --version 0.5.1
                    
NuGet\Install-Package BlazorNative.Runtime -Version 0.5.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BlazorNative.Runtime" Version="0.5.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BlazorNative.Runtime" Version="0.5.1" />
                    
Directory.Packages.props
<PackageReference Include="BlazorNative.Runtime" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BlazorNative.Runtime --version 0.5.1
                    
#r "nuget: BlazorNative.Runtime, 0.5.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BlazorNative.Runtime@0.5.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BlazorNative.Runtime&version=0.5.1
                    
Install as a Cake Addin
#tool nuget:?package=BlazorNative.Runtime&version=0.5.1
                    
Install as a Cake Tool

BlazorNative.Runtime

The BlazorNative runtime: the 9 blazornative_* native exports the shells call, the host session, the binary frame/bridge wire protocol, and the registration API through which your app names its pages. NativeAOT/trim-compatible — your app project owns the publish head (PublishAot), this library ships the exports it emits.

Where it sits

Your app → BlazorNative.ComponentsBlazorNative.RendererBlazorNative.Runtime → the native shells. The runtime is the boundary layer: everything above it is managed Blazor, everything below it is Kotlin/Swift.

What you use from it

// At startup (a [ModuleInitializer] in a NativeAOT app), once:
BlazorNativeApp.RegisterPages(
    BlazorNativePage.Routed<HomePage>("/", nameof(HomePage)),
    BlazorNativePage.Named<DiagnosticsPage>(nameof(DiagnosticsPage)));

Routed pages are reachable by route (navigation/deep links) and by name; named pages by name only. Registration is validated loudly and happens exactly once.

Status

Pre-1.0 (0.x): BlazorNative is a proof of concept heading toward a stable release. The ABI and component surface may still move between minor versions.

License: MIT · Docs: https://marcelroozekrans.github.io/BlazorNative/

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.1 29 7/23/2026
0.5.0 45 7/23/2026
0.4.1 79 7/21/2026
0.4.0 85 7/21/2026
0.3.0 87 7/20/2026
0.2.0 88 7/20/2026
0.1.1 87 7/20/2026
0.1.0 85 7/19/2026