FireForNet.Firebase.Installations.Blazor
1.0.1-preview.1
Prefix Reserved
See the version list below for details.
dotnet add package FireForNet.Firebase.Installations.Blazor --version 1.0.1-preview.1
NuGet\Install-Package FireForNet.Firebase.Installations.Blazor -Version 1.0.1-preview.1
<PackageReference Include="FireForNet.Firebase.Installations.Blazor" Version="1.0.1-preview.1" />
<PackageVersion Include="FireForNet.Firebase.Installations.Blazor" Version="1.0.1-preview.1" />
<PackageReference Include="FireForNet.Firebase.Installations.Blazor" />
paket add FireForNet.Firebase.Installations.Blazor --version 1.0.1-preview.1
#r "nuget: FireForNet.Firebase.Installations.Blazor, 1.0.1-preview.1"
#:package FireForNet.Firebase.Installations.Blazor@1.0.1-preview.1
#addin nuget:?package=FireForNet.Firebase.Installations.Blazor&version=1.0.1-preview.1&prerelease
#tool nuget:?package=FireForNet.Firebase.Installations.Blazor&version=1.0.1-preview.1&prerelease
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 | Versions 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. |
-
net10.0
- FireForNet.Firebase.Installations (>= 1.0.1-preview.1)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0)
- Microsoft.JSInterop (>= 10.0.0)
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.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.