DioRed.Vermilion.ChatStorage.JsonFile
15.0.0-preview.3
This is a prerelease version of DioRed.Vermilion.ChatStorage.JsonFile.
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DioRed.Vermilion.ChatStorage.JsonFile --version 15.0.0-preview.3
NuGet\Install-Package DioRed.Vermilion.ChatStorage.JsonFile -Version 15.0.0-preview.3
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.ChatStorage.JsonFile" Version="15.0.0-preview.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DioRed.Vermilion.ChatStorage.JsonFile" Version="15.0.0-preview.3" />
<PackageReference Include="DioRed.Vermilion.ChatStorage.JsonFile" />
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.ChatStorage.JsonFile --version 15.0.0-preview.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DioRed.Vermilion.ChatStorage.JsonFile, 15.0.0-preview.3"
#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.ChatStorage.JsonFile@15.0.0-preview.3
#: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.ChatStorage.JsonFile&version=15.0.0-preview.3&prerelease
#tool nuget:?package=DioRed.Vermilion.ChatStorage.JsonFile&version=15.0.0-preview.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DioRed.Vermilion.ChatStorage.JsonFile
A simple single-file JSON implementation of IChatStorage.
Use it
using DioRed.Vermilion.Hosting;
builder.AddVermilion("MyBot", v =>
{
v.ConfigureChatStorage(s => s.UseJsonFile("./vermilion-chats.json"));
v.ConfigureConnectors(c => c.AddTelegram());
});
Configuration
{
"Vermilion": {
"JsonFile": {
"FilePath": "./vermilion-chats.json",
"WriteIndented": true
}
}
}
Notes:
- writes are atomic (temp file + replace)
- the storage is process-local (no cross-process locking)
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- DioRed.Vermilion.Abstractions (>= 15.0.0-preview.3)
- Microsoft.Extensions.Configuration.Abstractions (>= 10.0.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DioRed.Vermilion.ChatStorage.JsonFile:
| Package | Downloads |
|---|---|
|
DioRed.Vermilion
Complete Vermilion package for quick starts: Core + Hosting + Telegram connector + built-in chat storages (InMemory, JsonFile, SQLite, SQL Server, Azure Table, MongoDB). |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 15.0.0-preview.7 | 32 | 3/30/2026 |
| 15.0.0-preview.6 | 38 | 3/29/2026 |
| 15.0.0-preview.3 | 32 | 3/29/2026 |
| 15.0.0-preview.2 | 34 | 3/29/2026 |
| 15.0.0-preview.1 | 76 | 3/28/2026 |
| 14.0.0 | 207 | 12/25/2025 |
See CHANGELOG.md and MIGRATION.md in the Vermilion repository for release details and upgrade notes.