Bonfire.Hosting 2023.4.8.4

dotnet add package Bonfire.Hosting --version 2023.4.8.4
NuGet\Install-Package Bonfire.Hosting -Version 2023.4.8.4
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="Bonfire.Hosting" Version="2023.4.8.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Bonfire.Hosting --version 2023.4.8.4
#r "nuget: Bonfire.Hosting, 2023.4.8.4"
#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 Bonfire.Hosting as a Cake Addin
#addin nuget:?package=Bonfire.Hosting&version=2023.4.8.4

// Install Bonfire.Hosting as a Cake Tool
#tool nuget:?package=Bonfire.Hosting&version=2023.4.8.4

❤️‍🔥 Bonfire.Net

Bonfire.Net is a collection of libraries that make it easy to add hosting and dependency injection to your .NET Framework applications. Say goodbye to boilerplate and hello to a cleaner, more testable codebase.

License

💁‍♀️ Getting Started

Get started by reviewing the answers to the following questions:

✅ Small changes, continuously integrated

Bonfire.Net employs workflows for continuous integration to ensure the repository is held to industry standards; here's the current state of those workflows:

.NET Workflow

💎 A few more gems

We believe in keeping the community informed, so here's a few more tidbits of information to satisfy some additional curiosities:

Contributors Issues Stars Size Line Count

🔥 Working with Bonfire.Net

The primary objective of Bonfire.Net is to make it easy to add hosting and dependency injection to your .NET Framework applications. To do this, we offer a static class called Ignite that provides a simple way to bootstrap your application.

⚙️ Configuring the host

The Ignite class provides a number of methods that can be used to configure the host. For example, you can configure the host to use a specific startup class:

public static void Main(string[] args) =>
    Ignite.UseStartup<Startup>(args)
          .Run();

You can also configure the host manually by providing an Action<IHostBuilder>:

public static void Main(string[] args) =>
    Ignite.Configure(builder =>
    {
        builder.UseContentRoot(Directory.GetCurrentDirectory());
        builder.UseEnvironment(EnvironmentName.Development);
        builder.UseStartup<Startup>();
    }, args)
    .Run();

▶️ Creating a Startup class

Get started by creating a Startup class with a ConfigureServices method:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        // Add services here
    }
}
🏗️ Using Ignition for configuration

For those who like compile-time enforcement, the Ignition class provides an alternative to the reflective approach used by the Startup class that ensures method names don't have typos. To use it, derive your Startup class from Ignition and override the methods you need:

internal sealed class Startup : Ignition
{
    protected override void Configure(IHostBuilder builder)
    {
        // Add configuration here
    }
    protected override void ConfigureServices(IServiceCollection services)
    {
        // Add services here
    }
}

Then, update your Program class to use Ignite and the UseIgnition method which constrains the type argument to ensure it derives from Ignition:

public static void Main(string[] args) =>
    Ignite.UseIgnition<Startup>(args)
          .Run();

There is no inherit behavior in the Ignition class, so you'll need to provide your own implementation for each method you override.

🖥️ Hosting a Windows service

To run your application as a Windows Service, you'll need to add a reference to the Bonfire.Hosting.ServiceProcess package. Then derive from WindowsService instead of ServiceBase:

public class MyService : WindowsService
{
    // The rest of your service stays the same.
}

Then, update your Program class to use Ignite:

public static void Main(string[] args) =>
    Ignite.UseStartup<Startup>(args)
          .Run<MyService>();
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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
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 Bonfire.Hosting:

Package Downloads
Bonfire.Hosting.ServiceProcess

A lightweight solution that effectively reduces the boilerplate for adding hosting and dependency injection support to your applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2023.4.8.4 212 4/9/2023
2023.4.8.3 174 4/8/2023

Initial release.