DioRed.Vermilion.Abstractions 15.1.0

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

DioRed.Vermilion.Abstractions

This package contains public contracts for the Vermilion platform:

  • IConnector and related types (MessagePostedEventArgs, PostResult)
  • IChatStorage
  • Interaction content types (IContent, TextContent, ImageUrlContent, ...)
  • Common domain primitives (ChatId, ChatMetadata, UserRole)

In v15, the contracts are cancellation-aware by default:

  • async APIs use CancellationToken ct = default
  • IChatStorage.GetChatsAsync(...) streams via IAsyncEnumerable<ChatMetadata>
  • ChatMetadata is immutable and represents runtime chat state only
  • ChatMetadata exposes convenience helpers such as HasTag, WithTag, and WithoutTag
  • IChatStorage has convenience extensions such as GetChatsArrayAsync()
  • storage migration can use IChatStorageExport and ChatStorageMigrator
  • storage-only fields such as chat titles stay outside ChatMetadata

Use it when you want to implement a custom connector or custom chat storage without taking a dependency on the full Vermilion engine.

If you just want to build a bot, install DioRed.Vermilion.Hosting (or DioRed.Vermilion metapackage) instead.

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.
  • net10.0

    • No dependencies.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on DioRed.Vermilion.Abstractions:

Package Downloads
DioRed.Vermilion.Core

Core engine for Vermilion: message model, command handling pipeline, clients policy and runtime primitives. Use with DioRed.Vermilion.Hosting to run bots in a Generic Host.

DioRed.Vermilion.ChatStorage.AzureTable

Azure Table Storage chat storage for Vermilion. Automatically ensures the target table exists.

DioRed.Vermilion.ChatStorage.SqlServer

SQL Server chat storage for Vermilion (Dapper-based). Automatically initializes/updates the required table schema.

DioRed.Vermilion.ChatStorage.InMemory

In-memory chat storage for Vermilion. Great for quick starts, demos and tests. Not persistent.

DioRed.Vermilion.Connectors.Telegram

Telegram connector for Vermilion. Supports single-bot and multi-account configuration, command dispatching and message sending.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
15.1.0 20 4/6/2026
15.0.0 42 4/5/2026
15.0.0-preview.8 52 4/5/2026
15.0.0-preview.7 55 3/30/2026
15.0.0-preview.6 65 3/29/2026
15.0.0-preview.5 35 3/29/2026
15.0.0-preview.4 40 3/29/2026
15.0.0-preview.3 49 3/29/2026
15.0.0-preview.2 53 3/29/2026
15.0.0-preview.1 108 3/28/2026
14.0.0 254 12/25/2025

See CHANGELOG.md and MIGRATION.md in the Vermilion repository for release details and upgrade notes.