SquidStd.Plugin.Abstractions 0.41.1

dotnet add package SquidStd.Plugin.Abstractions --version 0.41.1
                    
NuGet\Install-Package SquidStd.Plugin.Abstractions -Version 0.41.1
                    
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="SquidStd.Plugin.Abstractions" Version="0.41.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SquidStd.Plugin.Abstractions" Version="0.41.1" />
                    
Directory.Packages.props
<PackageReference Include="SquidStd.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 SquidStd.Plugin.Abstractions --version 0.41.1
                    
#r "nuget: SquidStd.Plugin.Abstractions, 0.41.1"
                    
#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 SquidStd.Plugin.Abstractions@0.41.1
                    
#: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=SquidStd.Plugin.Abstractions&version=0.41.1
                    
Install as a Cake Addin
#tool nuget:?package=SquidStd.Plugin.Abstractions&version=0.41.1
                    
Install as a Cake Tool

<h1 align="center">SquidStd.Plugin.Abstractions</h1>

Contracts for building SquidStd plugins. A plugin declares its identity through PluginMetadata and registers its services into the host's DryIoc container via Configure, receiving a PluginContext with shared boot data.

Install

dotnet add package SquidStd.Plugin.Abstractions

Usage

using DryIoc;
using SquidStd.Plugin.Abstractions.Data;
using SquidStd.Plugin.Abstractions.Interfaces.Plugins;

public sealed class MyPlugin : ISquidStdPlugin
{
    public PluginMetadata Metadata { get; } = new()
    {
        Id = "com.example.myplugin",
        Name = "My Plugin",
        Version = new Version(1, 0, 0),
        Author = "me"
    };

    public void Configure(IContainer container, PluginContext context)
    {
        // register the plugin's services / config sections here
    }
}

Key types

Type Purpose
ISquidStdPlugin Plugin entry point (Metadata, Configure).
PluginMetadata Plugin identity and dependency declarations.
PluginContext Shared boot data passed to the plugin.

License

MIT - part of SquidStd.

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 (1)

Showing the top 1 NuGet packages that depend on SquidStd.Plugin.Abstractions:

Package Downloads
SquidStd.Plugin

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.41.1 104 8/5/2026
0.41.0 879 7/24/2026
0.40.1 99 7/23/2026
0.40.0 457 7/21/2026
0.39.0 221 7/20/2026
0.38.0 149 7/20/2026
0.37.0 233 7/17/2026
0.36.0 192 7/15/2026
0.35.0 107 7/15/2026
0.34.0 110 7/14/2026
0.33.1 108 7/13/2026
0.33.0 108 7/13/2026
0.32.1 105 7/13/2026
0.32.0 108 7/13/2026
0.31.0 106 7/12/2026
0.30.0 104 7/12/2026
0.29.0 110 7/11/2026
0.28.0 116 7/8/2026
0.27.0 120 7/7/2026
0.26.0 105 7/7/2026
Loading failed