Cron.Core.StrongNamed
1.21.1.2310
Suggested Alternatives
Additional Details
This is the last strong named package. CronBuilder is updated to use the standard cron functionality, serialization, and not strong named.
dotnet add package Cron.Core.StrongNamed --version 1.21.1.2310
NuGet\Install-Package Cron.Core.StrongNamed -Version 1.21.1.2310
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="Cron.Core.StrongNamed" Version="1.21.1.2310" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cron.Core.StrongNamed --version 1.21.1.2310
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Cron.Core.StrongNamed, 1.21.1.2310"
#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.
// Install Cron.Core.StrongNamed as a Cake Addin #addin nuget:?package=Cron.Core.StrongNamed&version=1.21.1.2310 // Install Cron.Core.StrongNamed as a Cake Tool #tool nuget:?package=Cron.Core.StrongNamed&version=1.21.1.2310
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Cron-Builder
Cron Builder object that can be used to build Cron expressions, describe them, and manipulate objects.
Feature Overview
- Build Cron Expression.
- Create Cron by Expression.
- Display Description of Cron expression or a section.
- Expression Chaining of Cron object and Sections (Seconds, Minutes, Hours, DayMonth, Months, DayWeek, Year).
- Set intervals or specific times on Time Sections (Seconds, Minutes, Hours).
- Set specific date sections (DayMonth, Months, DayWeek, Year).
Examples
Create a new CronBuilder Object.
Create Default Cron Object.
schedule = new CronBuilder();
Create Cron object with an existing expression.
var cron = new CronBuilder(expression);
Create Initial Cron object with Days.
var cron = new CronBuilder
{
{ CronDays.Thursday, CronDays.Saturday }
};
Create Initial Cron object with Months.
var cron = new CronBuilder
{
{ CronMonths.August, CronMonths.November }
};
Create Initial Cron object with Months and Day.
var cron = new CronBuilder
{
{ CronDays.Thursday, CronMonths.November }
};
Build Cron by Section.
Add to Cron with sections.
schedule.Add(time: CronTimeSections.Seconds, value: seconds, repeatEvery: true)
schedule.Add(CronTimeSections.Minutes, 4)
schedule.Add(CronTimeSections.Hours, 3, 5)
Add a Month Restriction to the Cron Expression.
schedule.Add(CronMonths.March)
Add a Day of the Week Restriction to the Cron Expression.
schedule.Add(CronDays.Wednesday)
Chain Cron and Sections.
schedule = new CronBuilder();
schedule
.Add(CronDays.Friday)
.Add(CronTimeSections.DayMonth, dayMonth)
.Add(CronTimeSections.Years, years, true)
.Seconds.Add(5);
Display Cron Description
var descCron = cron.Description;
var descSeconds = cron.Seconds.Description;
Remove all or parts of a Cron Expression.
Remove only one entry of 5 in Seconds.
cron.Remove(CronTimeSections.Seconds, 5);
Remove only one entry Range of Seconds.
cron.Remove(CronTimeSections.Seconds, 5, 6);
Reset / Remove All of the Day of the Week section.
cron.Reset(CronTimeSections.DayWeek);
Reset all sections to the defaults.
cron.ResetAll();
Updates
Version 1.20.11.2216
Minor Cleanup and Fixes / Update packages.
Version 1.1.11.17
Cron Object renamed to CronBuilder to simplify creation due to conflicting namespace.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- EnhancedEnum-StrongNamed (>= 1.21.1.2310)
- System.ComponentModel.Annotations (>= 5.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 | |
---|---|---|---|
1.21.1.2310 | 4,025 | 1/23/2021 | |
1.20.11.2216 | 526 | 11/22/2020 | |
1.1.11.17 | 422 | 11/17/2020 | |
1.1.11.15 | 526 | 11/15/2020 | |
1.1.11.12 | 999 | 11/12/2020 | |
1.0.0.187 | 657 | 11/10/2020 |
1.1.11.17: Cron renamed to Cron Builder. Bug Fixes in Description property.