![]() |
VOOZH | about |
dotnet add package BlazorEssentials --version 4.0.2
NuGet\Install-Package BlazorEssentials -Version 4.0.2
<PackageReference Include="BlazorEssentials" Version="4.0.2" />
<PackageVersion Include="BlazorEssentials" Version="4.0.2" />Directory.Packages.props
<PackageReference Include="BlazorEssentials" />Project file
paket add BlazorEssentials --version 4.0.2
#r "nuget: BlazorEssentials, 4.0.2"
#:package BlazorEssentials@4.0.2
#addin nuget:?package=BlazorEssentials&version=4.0.2Install as a Cake Addin
#tool nuget:?package=BlazorEssentials&version=4.0.2Install as a Cake Tool
A set of utilities to make Blazor WebAssembly development easier than ever. Includes base classes for Application State, Configuration, and ViewModels, as well as an ODataResultList and a helper to pull configuration files out of embedded resources.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 3 NuGet packages that depend on BlazorEssentials:
| Package | Downloads |
|---|---|
|
BlazorEssentials.Breakdance
A set of utilities to make Blazor development easier than ever. Includes base classes to test BlazorEssentials ViewModels. |
|
|
BlazorEssentials.IndexedDb
An IndexedDB provider for Blazor that makes working with the built-in browser database magical. |
|
|
BlazorEssentials.TursoDb
A Turso database provider for Blazor that brings SQLite-compatible local-first databases with cloud sync to your Blazor apps. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.2 | 644 | 4/6/2026 |
| 4.0.2-preview.3 | 81 | 4/6/2026 |
| 4.0.2-preview.2 | 71 | 4/6/2026 |
| 4.0.2-preview.1 | 104 | 4/6/2026 |
| 4.0.1 | 189 | 4/3/2026 |
| 4.0.0 | 740 | 12/21/2025 |
| 4.0.0-CI-20260324-122351 | 146 | 3/24/2026 |
| 4.0.0-CI-20260323-191045 | 131 | 3/23/2026 |
| 4.0.0-CI-20251220-190326 | 182 | 12/21/2025 |
| 4.0.0-CI-20251123-125950 | 398 | 11/23/2025 |
| 4.0.0-CI-20251116-221555 | 346 | 11/17/2025 |
| 4.0.0-CI-20251115-193536 | 192 | 11/16/2025 |
| 4.0.0-CI-20251115-191703 | 192 | 11/16/2025 |
| 4.0.0-CI-20251112-180912 | 354 | 11/12/2025 |
| 4.0.0-CI-20251112-135817 | 336 | 11/12/2025 |
| 3.0.1-CI-20250120-220559 | 669 | 1/21/2025 |
| 3.0.0 | 3,731 | 11/25/2024 |
| 3.0.0-CI-20250120-213325 | 215 | 1/21/2025 |
| 3.0.0-CI-20241125-003524 | 203 | 11/25/2024 |
| 3.0.0-CI-20241113-140055 | 204 | 11/13/2024 |
Version 4.0.0
- Updated support for Blazor on .NET 10, 9, 8.
- Removed support for .NET 6.
Version 3.0.0
- Updated support for Blazor on .NET 9.0, 8.0, and 6.0.
- Added `JsModule` class to simplify loading JavaScript modules & building .NET wrappers for JS libraries.
- Added 'InterfaceElement' UI abstraction to standardize the way BlazorEssentials references UI elements.
- `ActionButtonBase` now inherits from `InterfaceElement`.
- (Breaking) `ActionButtonBase.ButtonText` is now `ActionButtonBase.DisplayText`.
- (Breaking) `ActionButtonBase.ButtonClass` is now `ActionButtonBase.CssClass`.
- `NavigationItem` now inherits from `InterfaceElement`.
- (Breaking) `NavigationItem.Text` is now `NavigationItem.DisplayText`.
- (Breaking) `NavigationItem.Icon` is now `NavigationItem.IconClass`.
- `ViewModelBase` now has the DelayDispatcher built-in.
- Navigation Improvements:
- (Breaking) Move NavigationManager injection from `ViewModelBase` to `AppStateBase` to centralize navigation handling.
- Fixed a logic bug in `AppStateBase.Navigate()` and related codepaths to optionally specify whether to call `SetCurrentNavItem()`.
- Added `AppStateBase.OpenInNewTab()`, which does what you would expect.
Version 2.0.0
- Updated support for Blazor on .NET 6 and .NET 7 Preview 6.
- Removed custom authentication solution in favor of OOB auth.
- Now injecting an IHttpClientFactory where necessary instead of an HttpClient.
- Added simplified registration into applications, thanks to EasyAF.Configuration and EasyAF.Http.
- Added Blazor unit testing support with Breakdance.