Fluxera.Extensions.Hosting.Wpf
6.0.13
Prefix Reserved
See the version list below for details.
dotnet add package Fluxera.Extensions.Hosting.Wpf --version 6.0.13
NuGet\Install-Package Fluxera.Extensions.Hosting.Wpf -Version 6.0.13
<PackageReference Include="Fluxera.Extensions.Hosting.Wpf" Version="6.0.13" />
paket add Fluxera.Extensions.Hosting.Wpf --version 6.0.13
#r "nuget: Fluxera.Extensions.Hosting.Wpf, 6.0.13"
// Install Fluxera.Extensions.Hosting.Wpf as a Cake Addin #addin nuget:?package=Fluxera.Extensions.Hosting.Wpf&version=6.0.13 // Install Fluxera.Extensions.Hosting.Wpf as a Cake Tool #tool nuget:?package=Fluxera.Extensions.Hosting.Wpf&version=6.0.13
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
- Xamarin Forms
After the final release of .NET MAUI which is already built upon the generic host infrastructure we will add the modular capabilities to it.
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
- IConfigureServicesModule
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. |
-
net6.0-windows7.0
- Fluxera.Extensions.Hosting (>= 6.0.13)
- JetBrains.Annotations (>= 2022.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.
Version | Downloads | Last updated |
---|---|---|
8.2.3 | 119 | 7/9/2024 |
8.2.2 | 120 | 6/15/2024 |
8.2.1 | 115 | 6/2/2024 |
8.2.0 | 107 | 5/26/2024 |
8.1.3 | 122 | 4/26/2024 |
8.1.2 | 105 | 4/26/2024 |
8.1.1 | 107 | 4/26/2024 |
8.1.0 | 102 | 4/24/2024 |
8.0.7 | 111 | 4/18/2024 |
8.0.6 | 118 | 4/13/2024 |
8.0.5 | 99 | 4/13/2024 |
8.0.4 | 119 | 3/19/2024 |
8.0.3 | 121 | 2/22/2024 |
8.0.2 | 190 | 1/4/2024 |
8.0.1 | 170 | 11/23/2023 |
8.0.0 | 116 | 11/15/2023 |
7.1.9 | 170 | 7/23/2023 |
7.1.8 | 151 | 7/20/2023 |
7.1.7 | 154 | 6/21/2023 |
7.1.6 | 188 | 4/25/2023 |
7.1.5 | 194 | 4/24/2023 |
7.1.4 | 189 | 4/13/2023 |
7.1.3 | 233 | 3/16/2023 |
7.1.2 | 242 | 2/28/2023 |
7.1.1 | 279 | 1/26/2023 |
7.1.0 | 281 | 1/18/2023 |
7.0.6 | 291 | 12/22/2022 |
7.0.5 | 294 | 12/13/2022 |
7.0.4 | 285 | 12/9/2022 |
7.0.3 | 322 | 11/24/2022 |
7.0.2 | 325 | 11/15/2022 |
7.0.1 | 335 | 11/12/2022 |
7.0.0 | 325 | 11/9/2022 |
6.2.2 | 402 | 10/12/2022 |
6.2.1 | 378 | 10/9/2022 |
6.2.0 | 405 | 10/1/2022 |
6.1.1 | 424 | 9/20/2022 |
6.1.0 | 437 | 9/16/2022 |
6.0.17 | 428 | 9/15/2022 |
6.0.14 | 417 | 7/30/2022 |
6.0.13 | 438 | 6/30/2022 |
6.0.12 | 431 | 6/15/2022 |
6.0.11 | 423 | 6/7/2022 |
6.0.10 | 437 | 5/28/2022 |
6.0.9 | 424 | 5/10/2022 |
6.0.8 | 421 | 5/5/2022 |
6.0.7 | 435 | 4/20/2022 |
6.0.6 | 452 | 4/20/2022 |
6.0.5 | 464 | 4/11/2022 |
6.0.4 | 434 | 4/10/2022 |
6.0.3 | 445 | 3/24/2022 |
6.0.2 | 446 | 2/17/2022 |
6.0.1 | 287 | 12/23/2021 |