Dependency/ForgeTrust.Runnable.Dependency.Autofac/README.md

ForgeTrust.Runnable.Dependency.Autofac

ForgeTrust.Runnable.Dependency.Autofac

Autofac IoC container integration for Runnable modules.

Overview

This package allows modules to participate in Autofac service registration, enabling advanced DI features not available in the default .NET service collection.

Usage

Inherit from RunnableAutofacModule instead of IRunnableModule if you need to use Autofac-specific registrations.

public class MyAutofacModule : RunnableAutofacModule
{
    protected override void Load(ContainerBuilder builder)
    {
        // Custom Autofac registrations
    }
}

📂 Back to Dependency List | 🏠 Back to Root