BlazorNative.Core 0.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package BlazorNative.Core --version 0.1.1
                    
NuGet\Install-Package BlazorNative.Core -Version 0.1.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.Core" Version="0.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BlazorNative.Core" Version="0.1.1" />
                    
Directory.Packages.props
<PackageReference Include="BlazorNative.Core" />
                    
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.Core --version 0.1.1
                    
#r "nuget: BlazorNative.Core, 0.1.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.Core@0.1.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.Core&version=0.1.1
                    
Install as a Cake Addin
#tool nuget:?package=BlazorNative.Core&version=0.1.1
                    
Install as a Cake Tool

BlazorNative.Core

Core contracts for BlazorNative: the shell bridge and interop abstractions, the INavigationManager contract, and the DI-facing primitives shared by every other BlazorNative package.

Where it sits

Your app → BlazorNative.ComponentsBlazorNative.RendererBlazorNative.Runtime → the native shells. Core is the contracts layer underneath all of them — it names no renderer, no runtime, no shell.

What you use from it

// Navigate from any component through the Core contract:
[Inject] public INavigationManager Navigation { get; set; } = default!;
Navigation.NavigateTo("/settings");

You rarely reference Core directly — it arrives transitively with the packages above.

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 (5)

Showing the top 5 NuGet packages that depend on BlazorNative.Core:

Package Downloads
BlazorNative.Http

BlazorNative HTTP bridge: BridgeHttpHandler routes HttpClient traffic through the hosting native shell, so Blazor components use plain HttpClient/IHttpClientFactory on NativeAOT.

BlazorNative.Device

BlazorNative device APIs: DI-injectable ergonomic facades (IGeolocation) over the permission-gated host-call bridge, so Blazor components request location and other device capabilities with denial delivered as data, never an exception.

BlazorNative.Components

The public Bn* component library for BlazorNative apps: BnView, BnText, BnButton, BnInput, BnTheme and friends — sealed, AOT/trim-compatible Blazor components (authorable in .razor since Phase 7.1) targeting native widgets.

BlazorNative.Runtime

The BlazorNative runtime: the 10 blazornative_* native exports, the host session, the binary frame/bridge wire protocol, and the BlazorNativeApp.RegisterPages registration API through which an app names its pages. NativeAOT/trim-compatible — the app owns the publish head.

BlazorNative.Renderer

The BlazorNative renderer: drives Blazor's RenderTree diffing into a native widget tree and emits binary UI patch frames for platform shells. NativeAOT/trim-compatible.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.5.1 0 7/23/2026
0.5.0 0 7/23/2026
0.4.1 79 7/21/2026
0.4.0 97 7/21/2026
0.3.0 114 7/20/2026
0.2.0 113 7/20/2026
0.1.1 116 7/20/2026
0.1.0 117 7/19/2026