Schuly.Plugin.Abstractions
0.2.36
dotnet add package Schuly.Plugin.Abstractions --version 0.2.36
NuGet\Install-Package Schuly.Plugin.Abstractions -Version 0.2.36
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="Schuly.Plugin.Abstractions" Version="0.2.36" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Schuly.Plugin.Abstractions" Version="0.2.36" />
<PackageReference Include="Schuly.Plugin.Abstractions" />
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 Schuly.Plugin.Abstractions --version 0.2.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Schuly.Plugin.Abstractions, 0.2.36"
#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 Schuly.Plugin.Abstractions@0.2.36
#: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=Schuly.Plugin.Abstractions&version=0.2.36
#tool nuget:?package=Schuly.Plugin.Abstractions&version=0.2.36
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Schuly.Plugin.Abstractions
![]()
The stable plugin contract for the Schuly backend. Implement these interfaces to extend the backend with background tasks, event handlers, and integrations — without vendoring backend source.
What's in the package
ISchulyPlugin— entry point: register services, endpoints, migrationsIPluginBackgroundTask— recurring background workIPluginEventHandler<TCommand>— react to application commandsIPluginUserContext— read user claims / roles from inside a plugin
Install
dotnet add package Schuly.Plugin.Abstractions
Use
using Schuly.Plugin.Abstractions;
public class MyPlugin : ISchulyPlugin
{
public string Name => "MyPlugin";
public string Version => "1.0.0";
public void ConfigureServices(IServiceCollection services, PluginServiceContext ctx) { }
public void ConfigureEndpoints(IEndpointRouteBuilder endpoints) { }
public Task MigrateAsync(IServiceProvider sp, CancellationToken ct = default) => Task.CompletedTask;
}
The backend's plugin host discovers and runs your plugin automatically.
Links
- SchulyBackend — consumes this package
- SchulyPlugins — official plugins
- Source
- schuly.dev
Versioning
Semver. Any interface change is tagged breaking-change and bumps the major version.
License
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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.
-
net10.0
- Microsoft.EntityFrameworkCore (>= 10.0.7)
- Npgsql.EntityFrameworkCore.PostgreSQL (>= 10.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.36 | 5 | 6/23/2026 |
| 0.2.35 | 73 | 6/23/2026 |
| 0.2.34 | 65 | 6/22/2026 |
| 0.2.33 | 65 | 6/22/2026 |
| 0.2.32 | 112 | 6/15/2026 |
| 0.2.31 | 107 | 6/15/2026 |
| 0.2.30 | 86 | 6/15/2026 |
| 0.2.29 | 100 | 6/14/2026 |
| 0.2.28 | 86 | 6/14/2026 |
| 0.2.27 | 93 | 6/14/2026 |
| 0.2.26 | 120 | 5/29/2026 |
| 0.2.25 | 98 | 5/29/2026 |
| 0.2.24 | 95 | 5/29/2026 |
| 0.2.23 | 112 | 5/27/2026 |
| 0.2.22 | 91 | 5/27/2026 |
| 0.2.21 | 94 | 5/27/2026 |
| 0.2.20 | 89 | 5/27/2026 |
| 0.2.19 | 89 | 5/27/2026 |
| 0.2.18 | 99 | 5/27/2026 |
| 0.2.17 | 99 | 5/27/2026 |
Loading failed