TCIS.Pluggable.Engine 1.0.0-rc.10

This is a prerelease version of TCIS.Pluggable.Engine.
dotnet add package TCIS.Pluggable.Engine --version 1.0.0-rc.10
                    
NuGet\Install-Package TCIS.Pluggable.Engine -Version 1.0.0-rc.10
                    
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="TCIS.Pluggable.Engine" Version="1.0.0-rc.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TCIS.Pluggable.Engine" Version="1.0.0-rc.10" />
                    
Directory.Packages.props
<PackageReference Include="TCIS.Pluggable.Engine" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TCIS.Pluggable.Engine --version 1.0.0-rc.10
                    
#r "nuget: TCIS.Pluggable.Engine, 1.0.0-rc.10"
                    
#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.
#:package TCIS.Pluggable.Engine@1.0.0-rc.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.10&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.10&prerelease
                    
Install as a Cake Tool

TCIS.Pluggable.Engine

The core engine library for the TCIS Pluggable Pipeline architecture. It provides a unified discovery mechanism (Modules + Steps + Rules + Services), Pipeline Analyzer, Pipeline Engine, and Resilience policies (Polly).

📦 Installation

dotnet add package TCIS.Pluggable.Engine

🚀 Registration / Setup (Program.cs)

Register the Pluggable Engine and Discovery:

using TCIS.Pluggable.Engine.Modules;

var builder = WebApplication.CreateBuilder(args);

// Register the Pluggable Pipeline ecosystem:
// - Resilience (Polly Pipelines)
// - Platform Core Services (IPipelineEngine, IPipelineAnalyzer)
// - Automatically scan and register Modules, Pipeline Steps, and Business Rules.
// - Load Plugins from the specified folder.
builder.Services.AddPluggablePipeline(
    builder.Configuration,
    typeof(Program).Assembly // Core Assemblies
);

⚙️ Configuration

Configure the directory containing Plugins and the suffixes for automatic DI registration in appsettings.json:

{
  "PipelineSettings": {
    "PluginFolder": "Plugins"
  },
  "TLogSettings": {
    "AopSettings": {
      "DiRegistrationSuffixes": [
        "Service",
        "Provider",
        "Mapper",
        "Factory",
        "Manager",
        "Repository",
        "Policy"
      ]
    }
  }
}

💡 Usage

Automatically register services by suffix (Auto-MultiTenantService) or utilize Attributes:

using TCIS.Pluggable.Abstractions.Pipelines.Attributes;
using TCIS.Pluggable.Abstractions.Pipelines.Abstractions;

[PipelineStep(StepKey = "ValidateOrder", Priority = 1, ExecutionOrder = 10, TimeoutSeconds = 30)]
public class ValidateOrderStep : IPipelineStep<OrderContext>
{
    public Task ExecuteAsync(OrderContext context, CancellationToken cancellationToken)
    {
        // ... logic
        return Task.CompletedTask;
    }
}
Product Compatible and additional computed target framework versions.
.NET 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows 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 TCIS.Pluggable.Engine:

Package Downloads
TCIS.Pluggable.Engine.Autofac

TCIS Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Autofac integration for TCIS.Pluggable.Engine

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-rc.10 26 7/24/2026
1.0.0-rc.9 42 7/21/2026
1.0.0-rc.8 33 7/21/2026
1.0.0-rc.7 47 7/17/2026
1.0.0-rc.6 63 7/7/2026
1.0.0-rc.5 69 7/7/2026
1.0.0-rc.2 69 5/12/2026