General.Frontend.Shared
1.1.1
See the version list below for details.
dotnet add package General.Frontend.Shared --version 1.1.1
NuGet\Install-Package General.Frontend.Shared -Version 1.1.1
<PackageReference Include="General.Frontend.Shared" Version="1.1.1" />
<PackageVersion Include="General.Frontend.Shared" Version="1.1.1" />
<PackageReference Include="General.Frontend.Shared" />
paket add General.Frontend.Shared --version 1.1.1
#r "nuget: General.Frontend.Shared, 1.1.1"
#:package General.Frontend.Shared@1.1.1
#addin nuget:?package=General.Frontend.Shared&version=1.1.1
#tool nuget:?package=General.Frontend.Shared&version=1.1.1
This package contains common elements for most FrontEnd projects with Blazor WebAssembly and Radzen. It includes a generic interface to implement the repository sponsor, an abstract class to implement it and 2 classes to handle generic grids.
| 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
- General.Backend.Shared (>= 1.1.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
refactor: fix thread safety, security, and correctness issues in GenericAPIRepository
- Replace DefaultRequestHeaders mutation with per-request Authorization header via
HttpRequestMessage, making SetToken/RemoveToken thread-safe
- Fix Bearer token casing (bearer -> Bearer, per RFC 6750)
- Add EnsureSuccessStatusCode() before deserializing responses in all HTTP methods,
preventing JsonException on HTML error pages (401, 502, etc.)
- Fix GetByIdAsync error reporting wrong service name ("GetAllAsync")
- Remove unused System.Runtime.InteropServices.Marshalling using
- IGenericAPIRepository: remove empty outer wrapper interface; promote generic interface
to top level
- GridUtils.SetEntityValues: fix null/type handling with Convert.ChangeType to prevent
InvalidCastException on non-string properties
- GridUtils: remove Console.WriteLine and dead try/catch blocks
- Add GeneratePackageOnBuild to .csproj for consistency with backend project