RecurringThings 10.0.0
The owner has unlisted this package.
This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package RecurringThings --version 10.0.0
NuGet\Install-Package RecurringThings -Version 10.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="RecurringThings" Version="10.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="RecurringThings" Version="10.0.0" />
<PackageReference Include="RecurringThings" />
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 RecurringThings --version 10.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: RecurringThings, 10.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 RecurringThings@10.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=RecurringThings&version=10.0.0
#tool nuget:?package=RecurringThings&version=10.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Built on iCal.Net for RFC 5545 recurrence rules, RecurringThings adds a persistence layer with multi-tenant isolation and efficient date range queries.
Features
- Multi-tenant isolation - TenantId and resource path scoping
- Efficient date range queries - Query only the events you need
- Transaction support - ACID operations via Transactional library
Installation
# Core library (required)
dotnet add package RecurringThings
# Choose ONE persistence provider:
dotnet add package RecurringThings.MongoDB
dotnet add package RecurringThings.PostgreSQL
Setup
Register RecurringThings in your Program.cs or Startup.cs:
// Using MongoDB
services.AddRecurringThings(builder =>
builder.UseMongoDb((provider, options) =>
{
options.ConnectionString = "mongodb://localhost:27017";
options.DatabaseName = "myapp";
options.CollectionName = "mycalendar";
}));
// Or using PostgreSQL
services.AddRecurringThings(builder =>
builder.UsePostgreSql((provider, options) =>
{
options.ConnectionString = "Host=localhost;Database=myapp;Username=user;Password=pass";
}));
The IServiceProvider parameter allows you to resolve services registered before AddRecurringThings, such as IOptions<T> or IConfiguration.
Then inject IRecurrenceEngine wherever you need it.
Usage
Create an event:
var evt = new CalendarEvent
{
Uid = "meeting-123",
Summary = "Weekly Standup",
Start = new CalDateTime(2025, 1, 6, 9, 0, 0, "America/New_York"),
Duration = TimeSpan.FromMinutes(30),
RecurrenceRules = [new RecurrencePattern(FrequencyType.Weekly)]
};
await engine.CreateEventAsync(evt, "tenant-1", "user-abc", cancellationToken);
Query events:
var filter = EventFilter.Create()
.ForUser("user-abc")
.From(DateTime.UtcNow)
.To(DateTime.UtcNow.AddMonths(1))
.Build();
await foreach (var evt in engine.GetEventsAsync("tenant-1", filter).WithCancellation(cancellationToken))
{
Console.WriteLine(evt.Summary);
}
Supported Databases
| Provider | Documentation |
|---|---|
| MongoDB | RecurringThings.MongoDB |
| PostgreSQL | RecurringThings.PostgreSQL |
License
Apache 2.0 - see LICENSE
| 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
- FluentValidation (>= 11.0.0)
- FluentValidation.DependencyInjectionExtensions (>= 11.0.0)
- Ical.Net (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection (>= 9.0.0)
- NodaTime (>= 3.2.2)
- Transactional.Abstractions (>= 10.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 |
|---|