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" />
                    
Directory.Packages.props
<PackageReference Include="Schuly.Plugin.Abstractions" />
                    
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 Schuly.Plugin.Abstractions --version 0.2.36
                    
#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
                    
Install as a Cake Addin
#tool nuget:?package=Schuly.Plugin.Abstractions&version=0.2.36
                    
Install as a Cake Tool

Schuly.Plugin.Abstractions

Schuly

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, migrations
  • IPluginBackgroundTask — recurring background work
  • IPluginEventHandler<TCommand> — react to application commands
  • IPluginUserContext — 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.

Versioning

Semver. Any interface change is tagged breaking-change and bumps the major version.

License

MIT

Product 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.

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