Sylin.Koan.Storage.Abstractions 1.0.32

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

Sylin.Koan.Storage.Abstractions

Inert provider, service, object, capability, and binding contracts for Koan Storage. Reference this package to build a provider or a module that speaks Storage without activating routing, IO, or Entity behavior.

Install

dotnet add package Sylin.Koan.Storage.Abstractions

Applications normally install a functional provider package instead; it brings the Storage runtime transitively.

Smallest meaningful use

using Koan.Core.Capabilities;
using Koan.Storage.Abstractions;
using Koan.Storage.Abstractions.Capabilities;

public sealed class ArchiveProvider : IStorageProvider
{
    public string Name => "archive";
    public StorageProviderPlacement Placement => StorageProviderPlacement.Remote;

    public void Describe(ICapabilities caps)
        => caps.Add(StorageCaps.SequentialRead);

    // Implement Write, OpenRead, OpenReadRange, Delete, and Exists.
}

Add IStatOperations, IListOperations, IServerSideCopy, or IPresignOperations only when the provider can perform that operation, and declare the matching StorageCaps token. Storage rejects inconsistent claims during composition. Use [ProviderPriority] only when this provider should win automatic election over another provider in the same placement.

Guarantees and boundaries

  • This package contains no KoanModule; referencing it alone registers and activates nothing.
  • StorageProviderPlacement describes topology, while StorageCaps describes backend guarantees. Provider names do not imply either.
  • IStorageProvider is the backend SPI. IStorageService is the functional runtime boundary consumed by modules.
  • Result objects report observed metadata; they do not imply durability, consistency, atomicity, public access, or distributed transactions.
  • Profile policy, provider election, replication, segmentation, Entity helpers, and startup reporting belong to Sylin.Koan.Storage.

See TECHNICAL.md for contract ownership and provider-author rules.

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

Showing the top 5 NuGet packages that depend on Sylin.Koan.Storage.Abstractions:

Package Downloads
Sylin.Koan.Storage

Koan storage runtime for Entity-backed objects, provider routing, segmentation, replication, validation, transfer, and lifecycle helpers.

Sylin.Koan.Media.Core

Koan media runtime for Entity-backed originals, recipe discovery, validated image pipelines, rendering, and runtime facts.

Sylin.Koan.Media.Web

Recipe-driven HTTP rendering and Entity-backed media serving for Koan.

Sylin.Koan.Media.Abstractions

Inert Koan media contracts for immutable recipes, pipeline intent, media metadata, output shapes, and registries.

Sylin.Koan.Storage.Connector.Local

Safe local-filesystem provider for Koan Storage with seek, range, stat, listing, and same-provider copy.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.32 124 9/13/2026
1.0.31 158 9/12/2026
1.0.30 208 9/10/2026
1.0.28 159 9/10/2026
1.0.26 155 9/9/2026
1.0.24 140 9/9/2026
1.0.23 167 9/9/2026
1.0.20 230 9/9/2026
1.0.17 162 9/5/2026
1.0.16 165 8/30/2026
1.0.15 157 8/30/2026
1.0.14 222 8/28/2026
1.0.13 163 8/28/2026
1.0.12 150 8/28/2026
1.0.11 158 8/28/2026
1.0.10 164 8/27/2026
1.0.7 177 8/25/2026
1.0.6 183 8/24/2026
1.0.4 246 8/22/2026
1.0.2 215 8/20/2026
Loading failed