Fluxera.Extensions.Hosting 8.1.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Fluxera.Extensions.Hosting --version 8.1.3
NuGet\Install-Package Fluxera.Extensions.Hosting -Version 8.1.3
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="Fluxera.Extensions.Hosting" Version="8.1.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluxera.Extensions.Hosting --version 8.1.3
#r "nuget: Fluxera.Extensions.Hosting, 8.1.3"
#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 Fluxera.Extensions.Hosting as a Cake Addin
#addin nuget:?package=Fluxera.Extensions.Hosting&version=8.1.3

// Install Fluxera.Extensions.Hosting as a Cake Tool
#tool nuget:?package=Fluxera.Extensions.Hosting&version=8.1.3

Build Status

Fluxera.Extensions.Hosting

A library that extends the Microsoft.Extensions.Hosting library with modular host implementations for various application platforms.

The library uses the generic host implementation and build a modular structure upon it. It is possible to split your application into login modules that can be shared between different types of applications.

Available Hosts

The modular host is available for the following applicattion types:

  • ASP.NET Core
  • Blazor WebAssembly
  • Console / Windows Service
  • WPF
  • MAUI

Usage

Every application needs a host and a startup module class. The application is composed of modules that define dependencies on other modules and optional modules that are loaded as plugins.

public class ConsoleApplicationModule : ConfigureServicesModule
{
	public override void ConfigureServices(IServiceConfigurationContext context)
	{
		context.Services.AddHostedService<ConsoleHostedService>();
		context.Services.AddSingleton<IWeatherService, WeatherService>();
		context.Services.AddOptions<WeatherSettings>().Bind(context.Configuration.GetSection("Weather"));
	}
}

This startup module just configures some services and regiosters them in the service collection. The service confiuration pipelineis split up into three steps: pre-configure-, configure- and post-configure-services. Each methos is executed in every module, before moving to the next method.

If you need to configure the application after the creation of the service provider you can just use the base class ConfigureApplicationModule which provides a similar three step pipeline for initializing the application: pre-configure, configure and post-configure. Additionally this base class provides a methos that is executed on every module when the application shuts down.

In addtition to the two base classes ConfigureServicesModule and ConfigureApplicationModule you are free to use one of the module interfaces to meet you configuration needs.

  • IModule
    • IConfigureServicesModule
      • IPreConfigureServices
      • IConfigureServices
      • IPostConfigureServices
    • IConfigureApplicationModule
      • IPreConfigureApplication
      • IConfigureApplication
      • IPostConfigureApplication
    • IShutdownApplicationModule

You can even just implement the IModule interface on your module class, if you don't need any configuration and application initialization.

public class ConsoleApplicationHost : ConsoleApplicationHost<ConsoleApplicationModule>
{
}

The simplest application host class just inherits from one of the available base classes for the application type you are running.

Each base class provides several methods you can overide to configure additional plugin modules, or a custom logger to use while bootstrapping the host. Please refer to the samples for more information.

public static class Program
{
	public static async Task Main(string[] args)
	{
		await ApplicationHost.RunAsync<ConsoleApplicationHost>(args);

		Console.WriteLine();
		Console.WriteLine("Press any key to quit...");
		Console.ReadKey(true);
	}
}

All what's left to do is to run the host using one of the available static entry-points.

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (74)

Showing the top 5 NuGet packages that depend on Fluxera.Extensions.Hosting:

Package Downloads
Fluxera.Extensions.Hosting.Modules.Configuration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A module that enables configuration.

Fluxera.Extensions.Hosting.Modules.OpenTelemetry The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A module that enables OpenTelemetry monitoring.

Fluxera.Extensions.Hosting.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A modular application host for ASP.NET.

Fluxera.Extensions.Hosting.Modules.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A module that enables ASP.NET Core.

Fluxera.Extensions.Hosting.Modules.Principal The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A module that enables a principal accessor.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.1.3 92 4/26/2024
8.1.2 42 4/26/2024
8.1.1 44 4/26/2024
8.1.0 142 4/24/2024
8.0.7 3,972 4/18/2024
8.0.6 766 4/13/2024
8.0.5 150 4/13/2024
8.0.4 765 3/19/2024
8.0.3 2,280 2/22/2024
8.0.2 5,573 1/4/2024
8.0.1 889 11/23/2023
8.0.0 971 11/15/2023
7.1.9 923 7/23/2023
7.1.8 188 7/20/2023
7.1.7 766 6/21/2023
7.1.6 1,871 4/25/2023
7.1.5 2,350 4/24/2023
7.1.4 969 4/13/2023
7.1.3 1,140 3/16/2023
7.1.2 1,758 2/28/2023
7.1.1 1,477 1/26/2023
7.1.0 1,811 1/18/2023
7.0.6 3,449 12/22/2022
7.0.5 342 12/13/2022
7.0.4 2,525 12/9/2022
7.0.3 384 11/24/2022
7.0.2 408 11/15/2022
7.0.1 421 11/12/2022
7.0.0 424 11/9/2022
6.2.2 5,770 10/12/2022
6.2.1 8,748 10/9/2022
6.2.0 5,143 10/1/2022
6.1.1 5,151 9/20/2022
6.1.0 5,353 9/16/2022
6.0.17 4,989 9/15/2022
6.0.14 5,275 7/30/2022
6.0.13 5,134 6/30/2022
6.0.12 5,148 6/15/2022
6.0.11 4,929 6/7/2022
6.0.10 11,595 5/28/2022
6.0.9 17,870 5/10/2022
6.0.8 4,634 5/5/2022
6.0.7 1,399 4/20/2022
6.0.6 1,383 4/20/2022
6.0.5 1,376 4/11/2022
6.0.4 1,339 4/10/2022
6.0.3 1,352 3/24/2022
6.0.2 1,373 2/17/2022
6.0.1 670 12/23/2021