DioRed.Vermilion 15.0.0

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

DioRed.Vermilion (Complete)

A convenience package that brings together Vermilion Hosting, the Telegram connector, and the built-in chat storages.

Included chat storages:

  • InMemory
  • JsonFile
  • Sqlite
  • SqlServer
  • AzureTable
  • MongoDb

Recommended for:

  • quick start / learning
  • small bots

With this package you can use the high-level builder shortcuts:

Host.CreateDefaultBuilder(args)
    .AddVermilion("MyBot", v => v
        .UseJsonFileChatStorage("vermilion-chats.json")
        .UseTelegram()
        .ConfigureCommandHandlers(h => h.Add("/ping", () => "pong")))
    .Build()
    .Run();

If you want a minimal dependency graph, reference only:

  • DioRed.Vermilion.Hosting
  • one connector package
  • one chat storage package

In that mode, use the collection-based API instead:

v.ConfigureChatStorage(s => s.UseJsonFile("vermilion-chats.json"));
v.ConfigureConnectors(c => c.AddTelegram());

To implement your own connector/storage, reference DioRed.Vermilion.Abstractions.

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
15.1.0 0 4/6/2026
15.0.0 26 4/5/2026
15.0.0-preview.9 19 4/5/2026
15.0.0-preview.8 21 4/5/2026
15.0.0-preview.7 47 3/30/2026
15.0.0-preview.6 42 3/29/2026
15.0.0-preview.3 39 3/29/2026
15.0.0-preview.2 44 3/29/2026
15.0.0-preview.1 81 3/28/2026
14.0.0 219 12/25/2025
13.0.1 259 8/15/2025
13.0.0 351 8/7/2025
12.5.0 517 7/25/2025
12.4.3 248 6/20/2025
12.4.2 303 3/23/2025
12.4.1 231 2/9/2025
12.4.0 250 1/11/2025
12.3.3 241 1/9/2025
12.3.2 242 12/9/2024
12.3.1 251 12/6/2024
Loading failed

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