qckdev.AspNetCore
2.0.0-net10.1612
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.1
This package targets .NET Core 3.1. The package is compatible with this framework or higher.
This is a prerelease version of qckdev.AspNetCore.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package qckdev.AspNetCore --version 2.0.0-net10.1612
NuGet\Install-Package qckdev.AspNetCore -Version 2.0.0-net10.1612
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="qckdev.AspNetCore" Version="2.0.0-net10.1612" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="qckdev.AspNetCore" Version="2.0.0-net10.1612" />
<PackageReference Include="qckdev.AspNetCore" />
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 qckdev.AspNetCore --version 2.0.0-net10.1612
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: qckdev.AspNetCore, 2.0.0-net10.1612"
#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 qckdev.AspNetCore@2.0.0-net10.1612
#: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=qckdev.AspNetCore&version=2.0.0-net10.1612&prerelease
#tool nuget:?package=qckdev.AspNetCore&version=2.0.0-net10.1612&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
qckdev.AspNetCore
Provides base infrastructure helpers for ASP.NET Core applications:
- Host environment service registration
- JSON serialized exception middleware
- Data initialization pipeline
- Localization bootstrap
- Swagger bootstrap helpers
Install
dotnet add package qckdev.AspNetCore
Example
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using qckdev.AspNetCore.Localization;
using qckdev.AspNetCore.Persistence;
using qckdev.AspNetCore.Swagger;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
builder.Services.AddHostEnvironmentService();
builder.Services.AddDataInitializer<SeedDataInitializer>();
builder.Services.AddLocalization<ApplicationResource>("en-US");
builder.Services.AddSwagger(c => c.AddSecurityBearer("Bearer"));
var app = builder.Build();
app.UseSerializedExceptionHandler();
app.UseRouting();
app.UseLocalization();
app.UseSwagger();
app.UseDataInitializer();
app.MapControllers();
app.Run();
public sealed class ApplicationResource : IApplicationResource { }
public sealed class SeedDataInitializer : IDataInitializer
{
public Task InitializeAsync(CancellationToken cancellationToken) => Task.CompletedTask;
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. 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 was computed. 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. |
| .NET Core | netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.1
- Microsoft.AspNetCore.Http (>= 2.1.22)
- Microsoft.AspNetCore.HttpOverrides (>= 2.1.1)
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.38)
- Microsoft.Extensions.Configuration (>= 3.1.25)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 3.1.25)
- Microsoft.Extensions.Localization (>= 3.1.25)
- Microsoft.Extensions.Logging.Abstractions (>= 3.1.25)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 3.1.25)
- Newtonsoft.Json (>= 13.0.1)
- qckdev.AspNetCore.Abstractions (>= 2.0.0-net10.1612)
- qckdev.Extensions.Configuration.Abstractions (>= 1.1.0-net10.1547)
- qckdev.Net.Abstractions (>= 2.0.0-net10.1)
- qckdev.Text.Json (>= 1.3.0-net10)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.9.0)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.9.0)
-
net10.0
- Microsoft.AspNetCore.HttpOverrides (>= 2.3.9)
- Microsoft.AspNetCore.Mvc.Core (>= 2.3.9)
- Microsoft.Extensions.Configuration (>= 10.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Localization (>= 10.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 10.0.0)
- Newtonsoft.Json (>= 13.0.1)
- qckdev.AspNetCore.Abstractions (>= 2.0.0-net10.1612)
- qckdev.Extensions.Configuration.Abstractions (>= 1.1.0-net10.1547)
- qckdev.Net.Abstractions (>= 2.0.0-net10.1)
- qckdev.Text.Json (>= 1.3.0-net10)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.9.0)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.9.0)
-
net5.0
- Microsoft.AspNetCore.Http (>= 2.1.22)
- Microsoft.AspNetCore.HttpOverrides (>= 2.1.1)
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.38)
- Microsoft.Extensions.Configuration (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0.0)
- Microsoft.Extensions.Localization (>= 5.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 5.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 5.0.0)
- Newtonsoft.Json (>= 13.0.1)
- qckdev.AspNetCore.Abstractions (>= 2.0.0-net10.1612)
- qckdev.Extensions.Configuration.Abstractions (>= 1.1.0-net10.1547)
- qckdev.Net.Abstractions (>= 2.0.0-net10.1)
- qckdev.Text.Json (>= 1.3.0-net10)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.9.0)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.9.0)
-
net6.0
- Microsoft.AspNetCore.Http (>= 2.1.22)
- Microsoft.AspNetCore.HttpOverrides (>= 2.1.1)
- Microsoft.AspNetCore.Mvc.Core (>= 2.1.38)
- Microsoft.Extensions.Configuration (>= 6.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Localization (>= 6.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.4)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 6.0.1)
- Newtonsoft.Json (>= 13.0.1)
- qckdev.AspNetCore.Abstractions (>= 2.0.0-net10.1612)
- qckdev.Extensions.Configuration.Abstractions (>= 1.1.0-net10.1547)
- qckdev.Net.Abstractions (>= 2.0.0-net10.1)
- qckdev.Text.Json (>= 1.3.0-net10)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.9.0)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.9.0)
-
net8.0
- Microsoft.AspNetCore.HttpOverrides (>= 2.3.9)
- Microsoft.AspNetCore.Mvc.Core (>= 2.3.9)
- Microsoft.Extensions.Configuration (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Localization (>= 8.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.1)
- qckdev.AspNetCore.Abstractions (>= 2.0.0-net10.1612)
- qckdev.Extensions.Configuration.Abstractions (>= 1.1.0-net10.1547)
- qckdev.Net.Abstractions (>= 2.0.0-net10.1)
- qckdev.Text.Json (>= 1.3.0-net10)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.9.0)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.9.0)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on qckdev.AspNetCore:
| Package | Downloads |
|---|---|
|
qckdev.AspNetCore.Identity
Package Description |
|
|
qckdev.AspNetCore.Mvc.Controllers
Base controllers for MVC and API applications |
|
|
qckdev.AspNetCore.Mvc.Controllers.Legacy
Base controllers for MVC and API applications |
|
|
qckdev.AspNetCore.Mvc.Headers
HTTP header validation and metadata for MVC applications |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 2.0.0-net10.1615 | 30 | 3/11/2026 | |
| 2.0.0-net10.1612 | 31 | 3/11/2026 | |
| 2.0.0-net10.1609 | 43 | 3/10/2026 | |
| 2.0.0-net10.1608 | 31 | 3/10/2026 | |
| 2.0.0-net10.1607 | 32 | 3/10/2026 | |
| 2.0.0-net10.1606 | 35 | 3/10/2026 | |
| 2.0.0-net10.1604 | 38 | 3/10/2026 | |
| 2.0.0-net10.1597 | 66 | 3/5/2026 | |
| 1.0.0 | 3,643 | 4/12/2023 | |
| 0.6.3 | 1,300 | 9/27/2022 | |
| 0.6.2 | 917 | 9/23/2022 | |
| 0.6.1 | 861 | 9/7/2022 |
Loading failed