Seq.App.EventSchedule 1.0.33

There is a newer version of this package available.
See the version list below for details.
dotnet add package Seq.App.EventSchedule --version 1.0.33
NuGet\Install-Package Seq.App.EventSchedule -Version 1.0.33
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="Seq.App.EventSchedule" Version="1.0.33" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Seq.App.EventSchedule --version 1.0.33
#r "nuget: Seq.App.EventSchedule, 1.0.33"
#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 Seq.App.EventSchedule as a Cake Addin
#addin nuget:?package=Seq.App.EventSchedule&version=1.0.33

// Install Seq.App.EventSchedule as a Cake Tool
#tool nuget:?package=Seq.App.EventSchedule&version=1.0.33

Seq.Apps.EventSchedule - Event Schedule for Seq

This app provides an event scheduling function for Seq. It will output an event or events at a scheduled time, on a given day of week or month, and in given months. It can log multiple events at once. The usage for this is for scenarios such as creating multiple Jira issues at a scheduled time. This is a highly configurable and powerful Seq app.

Event Schedule includes the optional ability to retrieve public holidays using AbstractApi's Public Holidays API which can retrieve your local and national public holidays.

Event Schedule shares many common features with Event Timeout for Seq and Event Threshold for Seq

You can check my Blog of Doom for the latest information!

Product 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.

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.0.36 172 7/4/2023
1.0.35 391 8/14/2022
1.0.34 450 2/1/2022
1.0.33 441 1/24/2022
1.0.32 326 10/1/2021
1.0.31 378 9/23/2021
1.0.30 324 9/18/2021
1.0.29 296 9/17/2021
1.0.28 315 8/10/2021
1.0.27 295 8/9/2021
1.0.26 340 8/4/2021
1.0.24 294 8/1/2021
1.0.23 317 8/1/2021
1.0.22 328 8/1/2021
1.0.18 350 7/28/2021
1.0.11 353 7/27/2021
1.0.10 469 7/27/2021
1.0.9 337 7/27/2021
1.0.8 300 7/26/2021
1.0.6 338 7/26/2021
1.0.2 298 7/23/2021
1.0.1 294 7/23/2021
1.0.0 294 7/23/2021

- Add option to include description in log message, instead of automatically including it
     - Add tokens to message, description, and tags for including date components in message and description
     - Always include Message and Description properties for the scheduled log events
     - Date tokens can include addition and subtraction (eg. {d+1} {M-10})
     - Add more complex date expression tokens (eg. {dd MMM yyyy+10d} {d M yy+10m} {dd MMMM yyyy-10y}
     - Multiple date expression tokens are permitted
     - Allow Project Key, Initial Time Estimate, Remaining Time Estimate, and Due Date properties for use with other Seq apps
     - Allow logging multiple log entries with variable outputs using the {LogToken} and {LogTokenLong} token that can be used in Message, Description, and Tags.
     - Allow Responders to be mapped to the {LogToken} key
     - Allow defining custom tokens for Message, Description, and Tags
     - Switch to using Lurgle.Dates as common date expression library
     - Remove custom tokens
     - Improve appname inclusion logic
     - Allow description to be a multi-line input type (LongText) to allow more clarity for long descriptions
     - Allow w (weeks) in Jira-type date expressions
     - Add month configuration
     - Add Handlebars template functionality
     - Eliminate lingering references to Thresholds in logs
     - Address DST inconsistencies
     - Address duplicate multi-log events
     - Dependency update
     - Code cleanup