BlazorEssentials 4.0.0-CI-20251115-191703
See the version list below for details.
dotnet add package BlazorEssentials --version 4.0.0-CI-20251115-191703
NuGet\Install-Package BlazorEssentials -Version 4.0.0-CI-20251115-191703
<PackageReference Include="BlazorEssentials" Version="4.0.0-CI-20251115-191703" />
<PackageVersion Include="BlazorEssentials" Version="4.0.0-CI-20251115-191703" />
<PackageReference Include="BlazorEssentials" />
paket add BlazorEssentials --version 4.0.0-CI-20251115-191703
#r "nuget: BlazorEssentials, 4.0.0-CI-20251115-191703"
#:package BlazorEssentials@4.0.0-CI-20251115-191703
#addin nuget:?package=BlazorEssentials&version=4.0.0-CI-20251115-191703&prerelease
#tool nuget:?package=BlazorEssentials&version=4.0.0-CI-20251115-191703&prerelease
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 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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
- EasyAF.Http (> 3.1.0-CI-20251109-185854 && <= 5.0.0)
- Microsoft.AspNetCore.Components.WebAssembly (>= 10.0.0 && < 11.0.0)
- Microsoft.AspNetCore.Components.WebAssembly.Authentication (>= 10.0.0 && < 11.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.0 && < 11.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0 && < 11.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 10.0.0 && < 11.0.0)
- Microsoft.Extensions.Http (>= 10.0.0 && < 11.0.0)
-
net8.0
- EasyAF.Http (> 3.1.0-CI-20251109-185854 && <= 5.0.0)
- Microsoft.AspNetCore.Components.WebAssembly (>= 8.0.22 && < 11.0.0)
- Microsoft.AspNetCore.Components.WebAssembly.Authentication (>= 8.0.22 && < 11.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2 && < 11.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1 && < 11.0.0)
- Microsoft.Extensions.Http (>= 8.0.1 && < 11.0.0)
-
net9.0
- EasyAF.Http (> 3.1.0-CI-20251109-185854 && <= 5.0.0)
- Microsoft.AspNetCore.Components.WebAssembly (>= 9.0.11 && < 11.0.0)
- Microsoft.AspNetCore.Components.WebAssembly.Authentication (>= 9.0.11 && < 11.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.11 && < 11.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.11 && < 11.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.11 && < 11.0.0)
- Microsoft.Extensions.Http (>= 9.0.11 && < 11.0.0)
NuGet packages (2)
Showing the top 2 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. |
GitHub repositories
This package is not used by any popular GitHub repositories.
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.