TCIS.Pluggable.Engine
1.0.0-rc.10
dotnet add package TCIS.Pluggable.Engine --version 1.0.0-rc.10
NuGet\Install-Package TCIS.Pluggable.Engine -Version 1.0.0-rc.10
<PackageReference Include="TCIS.Pluggable.Engine" Version="1.0.0-rc.10" />
<PackageVersion Include="TCIS.Pluggable.Engine" Version="1.0.0-rc.10" />
<PackageReference Include="TCIS.Pluggable.Engine" />
paket add TCIS.Pluggable.Engine --version 1.0.0-rc.10
#r "nuget: TCIS.Pluggable.Engine, 1.0.0-rc.10"
#:package TCIS.Pluggable.Engine@1.0.0-rc.10
#addin nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.10&prerelease
#tool nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.10&prerelease
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 | Versions 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. |
-
net8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 9.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Options (>= 9.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 9.0.0)
- Polly (>= 8.5.1)
- TCIS.Core (>= 1.0.0-rc.10)
- TCIS.Logging.Abstractions (>= 1.0.0-rc.10)
- TCIS.Pluggable.Abstractions (>= 1.0.0-rc.10)
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 |