qckdev.AspNetCore 0.1.0-alpha

This is a prerelease version of qckdev.AspNetCore.
There is a newer version of this package available.
See the version list below for details.
dotnet add package qckdev.AspNetCore --version 0.1.0-alpha
NuGet\Install-Package qckdev.AspNetCore -Version 0.1.0-alpha
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="0.1.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add qckdev.AspNetCore --version 0.1.0-alpha
#r "nuget: qckdev.AspNetCore, 0.1.0-alpha"
#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.
// Install qckdev.AspNetCore as a Cake Addin
#addin nuget:?package=qckdev.AspNetCore&version=0.1.0-alpha&prerelease

// Install qckdev.AspNetCore as a Cake Tool
#tool nuget:?package=qckdev.AspNetCore&version=0.1.0-alpha&prerelease

qckdev.AspNetCore

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;

public void ConfigureServices(IServiceCollection services)
{
	services.AddDataInitializer<DataInitialization>();
	services.AddControllers();
}

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
	(...)

	app.UseMiddleware<HandlerExceptionMiddleware>();
	app.UseRouting();

	(...)

	app.DataInitialization();
}
using Microsoft.Extensions.Configuration;
using qckdev.AspNetCore.Infrastructure.Data;
using System;
using System.Threading;
using System.Threading.Tasks;

public class DataInitialization : IDataInitializer
{
	public DataInitialization(
			IServiceProvider services,
			IConfiguration configuration, 
			...)
	{
		(...)
	}

	public async Task InitializeAsync(CancellationToken cancellationToken)
	{
		(...)
	}
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on qckdev.AspNetCore:

Package Downloads
qckdev.AspNetCore.Identity

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 1,475 4/12/2023
0.6.3 994 9/27/2022
0.6.2 739 9/23/2022
0.6.1 658 9/7/2022
0.6.1-alpha 482 9/7/2022
0.5.2-beta 787 12/16/2021
0.5.1-beta 512 12/15/2021
0.5.0-beta 559 11/15/2021
0.4.0-beta 1,471 10/3/2021
0.3.0-alpha 505 10/1/2021
0.2.1-alpha 593 7/31/2021
0.2.0-alpha.2 189 7/26/2021
0.2.0-alpha.1 219 6/29/2021
0.2.0-alpha 582 6/29/2021
0.1.1-alpha 545 6/29/2021
0.1.0-alpha 513 6/29/2021