FireForNet.Firebase.Installations.Blazor 1.0.1-preview.11

Prefix Reserved
This is a prerelease version of FireForNet.Firebase.Installations.Blazor.
dotnet add package FireForNet.Firebase.Installations.Blazor --version 1.0.1-preview.11
                    
NuGet\Install-Package FireForNet.Firebase.Installations.Blazor -Version 1.0.1-preview.11
                    
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="FireForNet.Firebase.Installations.Blazor" Version="1.0.1-preview.11" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FireForNet.Firebase.Installations.Blazor" Version="1.0.1-preview.11" />
                    
Directory.Packages.props
<PackageReference Include="FireForNet.Firebase.Installations.Blazor" />
                    
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 FireForNet.Firebase.Installations.Blazor --version 1.0.1-preview.11
                    
#r "nuget: FireForNet.Firebase.Installations.Blazor, 1.0.1-preview.11"
                    
#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 FireForNet.Firebase.Installations.Blazor@1.0.1-preview.11
                    
#: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=FireForNet.Firebase.Installations.Blazor&version=1.0.1-preview.11&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=FireForNet.Firebase.Installations.Blazor&version=1.0.1-preview.11&prerelease
                    
Install as a Cake Tool

FireForNet.Firebase.Installations.Blazor

Blazor integration package for FireForNet Firebase Installations. Provides IJSRuntime-based browser persistence implementations that work across all Blazor hosting models: WebAssembly, Server, Hybrid (MAUI/WPF/WinForms), and Auto.

Installation

dotnet add package FireForNet.Firebase.Installations.Blazor

Usage

services.AddFirebaseInstallations()
        .UseBlazor(options =>
        {
            options.LocalStoreKind = LocalStoreKind.IndexedDb;
        });

Package Boundary

This package uses IJSRuntime for all JavaScript interop. It is the correct choice for any Blazor hosting model.

For framework-independent WASM environments (Uno Platform, Avalonia WASM, pure .NET WASM), use FireForNet.Firebase.Installations.Browser instead — it uses [JSImport] for direct WASM-to-JS interop without a Blazor dependency.

Options

Option Default Description
LocalStoreKind IndexedDb Storage backend: IndexedDb or LocalStorage. IndexedDb falls back to localStorage when IndexedDB is unavailable or security-blocked.
IndexedDbDatabaseName "FireForNet.Installations" IndexedDB database name
IndexedDbVersion 1 IndexedDB schema version
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 (1)

Showing the top 1 NuGet packages that depend on FireForNet.Firebase.Installations.Blazor:

Package Downloads
FireForNet.Firebase.RemoteConfig.Blazor

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1-preview.11 64 6/29/2026
1.0.1-preview.10 61 6/25/2026
1.0.1-preview.9 53 6/24/2026
1.0.1-preview.8 60 6/23/2026
1.0.1-preview.7 71 6/9/2026
1.0.1-preview.6 52 6/8/2026
1.0.1-preview.5 62 6/8/2026
1.0.1-preview.4 68 6/8/2026
1.0.1-preview.3 52 6/8/2026
1.0.1-preview.2 62 6/8/2026
1.0.1-preview.1 59 6/8/2026
1.0.0-preview10 62 6/8/2026

v1.0.1-preview.11
- Synchronized package version with the preview.11 release.

v1.0.1-preview.10
- Synchronized package version with the preview.10 release.

v1.0.1-preview.9
- Synchronized package version with the preview.9 release.

v1.0.1-preview.8
- Synchronized package version with the preview.8 release.

v1.0.1-preview.7
- Synchronized package version with the preview.7 release.

v1.0.1-preview.6
- Synchronized package version with the preview.6 release.

v1.0.1-preview.5
- Synchronized package version with the preview.5 release.

v1.0.1-preview.4
- Migrated BlazorInstIndexedDbInterop to lazy ES-module import via Lazy<Task<IJSObjectReference>> for thread-safe concurrent access
- Added JSDisconnectedException handling in disposal

v1.0.1-preview.3
- Synchronized package version with the preview.3 release.

v1.0.1-preview.2
- Synchronized package version with the preview.2 release.

v1.0.1-preview.1
- Initial release.
- IJSRuntime-based IndexedDB and localStorage persistence for InstallationEntry.
- UseBlazor() extension method on FirebaseInstallationsBuilder for service registration.
- Replaces in-memory store with persistent browser storage across all Blazor hosting models (WASM, Server, Hybrid, Auto).
- IndexedDB persistence is isolated per configured database name and falls back to localStorage when IndexedDB is unavailable or security-blocked.
- No dependency on FireForNet.Firebase.Installations.Browser — references core Installations package directly.