General.Frontend.Shared 1.1.1

There is a newer version of this package available.
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
                    
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="General.Frontend.Shared" Version="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="General.Frontend.Shared" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="General.Frontend.Shared" />
                    
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 General.Frontend.Shared --version 1.1.1
                    
#r "nuget: General.Frontend.Shared, 1.1.1"
                    
#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 General.Frontend.Shared@1.1.1
                    
#: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=General.Frontend.Shared&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=General.Frontend.Shared&version=1.1.1
                    
Install as a Cake Tool

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 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.2 63 5/14/2026
1.1.1 102 4/4/2026
1.1.0 109 4/4/2026
1.0.1 158 1/15/2025
1.0.0 141 1/9/2025

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