![]() |
VOOZH | about |
dotnet add package CShells.Abstractions --version 0.0.28
NuGet\Install-Package CShells.Abstractions -Version 0.0.28
<PackageReference Include="CShells.Abstractions" Version="0.0.28" />
<PackageVersion Include="CShells.Abstractions" Version="0.0.28" />Directory.Packages.props
<PackageReference Include="CShells.Abstractions" />Project file
paket add CShells.Abstractions --version 0.0.28
#r "nuget: CShells.Abstractions, 0.0.28"
#:package CShells.Abstractions@0.0.28
#addin nuget:?package=CShells.Abstractions&version=0.0.28Install as a Cake Addin
#tool nuget:?package=CShells.Abstractions&version=0.0.28Install as a Cake Tool
Core abstractions and interfaces for building shell features without dependencies on the full CShells framework.
This package contains the fundamental interfaces and models needed to build CShells features. By referencing only this package in your feature libraries, you avoid pulling in the entire CShells runtime and its dependencies.
IShellFeature - Base interface for defining features that register servicesShellSettings - Configuration model for shell settingsIShellInitializer - Startup hook resolved from the shell provider before a shell becomes activeLifecyclePhase, LifecycleOrderAttribute, and AddShellInitializer<T>() - First-class initializer ordering APIsIDrainHandler - Cooperative drain hook invoked in parallel while an old shell generation shuts downdotnet add package CShells.Abstractions
using CShells.Features;
using CShells.Lifecycle;
using Microsoft.Extensions.DependencyInjection;
[ShellFeature("MyFeature")]
public class MyFeature : IShellFeature
{
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<IMyService, MyService>();
services.AddShellInitializer<MyFeatureInitializer>(
LifecyclePhase.Prepare,
order: 100);
}
}
AddShellInitializer<T>() registers the initializer as transient and attaches deterministic phase/order metadata. Existing direct IShellInitializer registrations remain valid and run in LifecyclePhase.Default using DI registration order.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on CShells.Abstractions:
| Package | Downloads |
|---|---|
|
Elsa.Features
Provides utilities to turn your class library into a module that provides features. |
|
|
CShells.AspNetCore.Abstractions
ASP.NET Core abstractions for CShells. Contains interfaces and models for building web shell features without dependencies on the full CShells framework. Reference this package in your ASP.NET Core feature libraries. |
|
|
CShells.FastEndpoints.Abstractions
FastEndpoints abstractions for CShells. Contains interfaces for integrating FastEndpoints with shell features. Reference this package when building shell features that expose FastEndpoints. |
|
|
Elsa.ServiceBus.MassTransit
Provides integration with MassTransit and comes with a MassTransit implementation of Elsa's IServiceBus abstraction. |
|
|
Elsa.Scheduling.Quartz
Provides integration with the Quartz.NET library and provide am implementation of Elsa's IJobScheduler using Quartz.NET. |
Showing the top 1 popular GitHub repositories that depend on CShells.Abstractions:
| Repository | Stars |
|---|---|
|
elsa-workflows/elsa-core
The Workflow Engine for .NET
|
| Version | Downloads | Last Updated |
|---|---|---|
| 0.0.28 | 286 | 6/12/2026 |
| 0.0.27 | 248 | 6/12/2026 |
| 0.0.26 | 241 | 6/12/2026 |
| 0.0.25 | 230 | 6/11/2026 |
| 0.0.24 | 1,418 | 5/15/2026 |
| 0.0.23 | 225 | 5/15/2026 |
| 0.0.22 | 225 | 5/14/2026 |
| 0.0.21 | 1,751 | 5/12/2026 |
| 0.0.20 | 252 | 5/8/2026 |
| 0.0.19 | 228 | 5/6/2026 |
| 0.0.18 | 250 | 5/2/2026 |
| 0.0.17 | 225 | 4/29/2026 |
| 0.0.16 | 239 | 4/27/2026 |
| 0.0.15 | 215 | 4/27/2026 |
| 0.0.14 | 22,344 | 4/20/2026 |
| 0.0.13 | 218 | 4/17/2026 |
| 0.0.12 | 367 | 3/16/2026 |
| 0.0.11 | 489 | 2/28/2026 |
| 0.0.10 | 232 | 2/24/2026 |
| 0.0.9 | 513 | 2/15/2026 |