TCIS.Pluggable.Engine
1.0.0-rc.9
See the version list below for details.
dotnet add package TCIS.Pluggable.Engine --version 1.0.0-rc.9
NuGet\Install-Package TCIS.Pluggable.Engine -Version 1.0.0-rc.9
<PackageReference Include="TCIS.Pluggable.Engine" Version="1.0.0-rc.9" />
<PackageVersion Include="TCIS.Pluggable.Engine" Version="1.0.0-rc.9" />
<PackageReference Include="TCIS.Pluggable.Engine" />
paket add TCIS.Pluggable.Engine --version 1.0.0-rc.9
#r "nuget: TCIS.Pluggable.Engine, 1.0.0-rc.9"
#:package TCIS.Pluggable.Engine@1.0.0-rc.9
#addin nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.9&prerelease
#tool nuget:?package=TCIS.Pluggable.Engine&version=1.0.0-rc.9&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.9)
- TCIS.Logging.Abstractions (>= 1.0.0-rc.9)
- TCIS.Pluggable.Abstractions (>= 1.0.0-rc.9)
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.37 | 44 | 8/27/2026 |
| 1.0.0-rc.36 | 57 | 8/27/2026 |
| 1.0.0-rc.35 | 43 | 8/26/2026 |
| 1.0.0-rc.34 | 47 | 8/26/2026 |
| 1.0.0-rc.33 | 59 | 8/21/2026 |
| 1.0.0-rc.32 | 63 | 8/21/2026 |
| 1.0.0-rc.31 | 65 | 8/21/2026 |
| 1.0.0-rc.30 | 54 | 8/21/2026 |
| 1.0.0-rc.29 | 59 | 8/21/2026 |
| 1.0.0-rc.28 | 65 | 8/21/2026 |
| 1.0.0-rc.27 | 62 | 8/21/2026 |
| 1.0.0-rc.26 | 63 | 8/20/2026 |
| 1.0.0-rc.25 | 65 | 8/20/2026 |
| 1.0.0-rc.24 | 67 | 8/20/2026 |
| 1.0.0-rc.23 | 63 | 8/20/2026 |
| 1.0.0-rc.22 | 65 | 8/19/2026 |
| 1.0.0-rc.21 | 64 | 8/19/2026 |
| 1.0.0-rc.20 | 75 | 8/18/2026 |
| 1.0.0-rc.19 | 73 | 8/13/2026 |
| 1.0.0-rc.9 | 64 | 7/21/2026 |