DioRed.Vermilion
15.0.0
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
<PackageReference Include="DioRed.Vermilion" Version="15.0.0" />
<PackageVersion Include="DioRed.Vermilion" Version="15.0.0" />
<PackageReference Include="DioRed.Vermilion" />
paket add DioRed.Vermilion --version 15.0.0
#r "nuget: DioRed.Vermilion, 15.0.0"
#:package DioRed.Vermilion@15.0.0
#addin nuget:?package=DioRed.Vermilion&version=15.0.0
#tool nuget:?package=DioRed.Vermilion&version=15.0.0
DioRed.Vermilion (Complete)
A convenience package that brings together Vermilion Hosting, the Telegram connector, and the built-in chat storages.
Included chat storages:
InMemoryJsonFileSqliteSqlServerAzureTableMongoDb
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 | Versions 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. |
-
net10.0
- DioRed.Vermilion.ChatStorage.AzureTable (>= 15.0.0)
- DioRed.Vermilion.ChatStorage.InMemory (>= 15.0.0)
- DioRed.Vermilion.ChatStorage.JsonFile (>= 15.0.0)
- DioRed.Vermilion.ChatStorage.MongoDb (>= 15.0.0)
- DioRed.Vermilion.ChatStorage.Sqlite (>= 15.0.0)
- DioRed.Vermilion.ChatStorage.SqlServer (>= 15.0.0)
- DioRed.Vermilion.Connectors.Telegram (>= 15.0.0)
- DioRed.Vermilion.Hosting (>= 15.0.0)
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 |
See CHANGELOG.md and MIGRATION.md in the Vermilion repository for release details and upgrade notes.