TaskMaster 5.0.0

dotnet add package TaskMaster --version 5.0.0                
NuGet\Install-Package TaskMaster -Version 5.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="TaskMaster" Version="5.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TaskMaster --version 5.0.0                
#r "nuget: TaskMaster, 5.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.
// Install TaskMaster as a Cake Addin
#addin nuget:?package=TaskMaster&version=5.0.0

// Install TaskMaster as a Cake Tool
#tool nuget:?package=TaskMaster&version=5.0.0                

TaskMaster

.NET Publish

TaskMaster is a lightweight C# library that provides functionality for running tasks based on specific criteria. It simplifies the process of setting up and executing tasks in your application.

Basic Usage

In order to use TaskMaster, you must wire it up first by adding it to your ServiceCollection:

serviceCollection.AddCanisterModules();

Once Canister is configured, you can create a new instance of the TaskMaster service:

var Runner = services.GetService<TaskMaster>();
Runner.Run(args);

The TaskMaster class handles task discovery, prioritization, and execution. It also logs any errors it encounters using Serilog. If Serilog is not registered with Canister, a default empty logger will be used. However, if a logger is specified, events will be logged using the ILogger class.

Creating a Task

Creating a task with TaskMaster is straightforward. Simply inherit from the ITask interface and implement its methods. Here's an example of a basic "Hello World" task:

/// <summary>
/// Basic hello world task
/// </summary>
public class HelloWorldTask : ITask
{
    public IFrequency[] Frequencies => new IFrequency[] { new RunAlways() };

    public string Name => "Hello World";

    public int Priority => 1;

    public bool Execute(DateTime lastRun)
    {
        Console.WriteLine("Hello World");
        return true;
    }

    public bool Initialize(IDataManager dataManager)
    {
        return true;
    }
}

In this example, the task runs every time the Run method of the TaskMaster is called. However, you can specify different frequencies for execution. The task's name is "Hello World," which is used for logging purposes. The priority is set to 1, determining the execution order. Tasks with lower priority values are executed first, and tasks with the same priority may run in parallel.

The Initialize method is called when the task is created and receives an IDataManager instance, which handles saving and retrieving configuration data for the task. By default, the data manager saves configuration data as JSON-serialized strings, but you can implement your own data manager for customization.

The Execute method is where the actual work of the task should be performed.

Installation

TaskMaster is available as a NuGet package. You can install it by running the following command in the Package Manager Console:

Install-Package TaskMaster

Build Process

To build the library, ensure you have the following minimum requirements:

  • Visual Studio 2017

Clone the project repository, and you should be able to load the solution in Visual Studio and build it without any issues.

For any further assistance or information, please refer to the project documentation or reach out to the project contributors.

Enjoy using TaskMaster in your applications!

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows 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
5.0.0 119 4 months ago
4.0.187 85 4 months ago
4.0.186 91 4 months ago
4.0.185 94 4 months ago
4.0.184 99 4 months ago
4.0.183 98 4 months ago
4.0.182 92 4 months ago
4.0.181 94 5 months ago
4.0.180 89 5 months ago
4.0.179 85 5 months ago
4.0.178 91 5 months ago
4.0.177 91 5 months ago
4.0.176 92 5 months ago
4.0.175 95 5 months ago
4.0.174 79 5 months ago
4.0.173 85 5 months ago
4.0.172 96 5 months ago
4.0.171 95 5 months ago
4.0.170 90 5 months ago
4.0.169 94 6 months ago
4.0.168 90 6 months ago
4.0.167 85 6 months ago
4.0.166 98 6 months ago
4.0.165 100 6 months ago
4.0.164 120 6 months ago
4.0.163 105 7 months ago
4.0.162 100 7 months ago
4.0.161 101 7 months ago
4.0.160 106 7 months ago
4.0.159 113 7 months ago
4.0.158 125 7 months ago
4.0.157 119 7 months ago
4.0.156 125 7 months ago
4.0.155 127 7 months ago
4.0.154 114 7 months ago
4.0.153 132 7 months ago
4.0.152 94 8 months ago
4.0.151 63 8 months ago
4.0.150 69 8 months ago
4.0.149 78 8 months ago
4.0.148 81 8 months ago
4.0.147 88 8 months ago
4.0.146 100 8 months ago
4.0.145 93 8 months ago
4.0.144 105 9 months ago
4.0.143 132 9 months ago
4.0.142 102 9 months ago
4.0.141 98 9 months ago
4.0.140 107 9 months ago
4.0.139 115 9 months ago
4.0.138 110 9 months ago
4.0.137 103 9 months ago
4.0.136 109 9 months ago
4.0.135 104 9 months ago
4.0.134 131 9 months ago
4.0.133 95 10 months ago
4.0.132 118 10 months ago
4.0.131 113 10 months ago
4.0.130 101 5/20/2024
4.0.129 87 5/17/2024
4.0.128 89 5/16/2024
4.0.127 138 5/9/2024
4.0.126 124 5/8/2024
4.0.125 134 5/7/2024
4.0.124 130 5/6/2024
4.0.123 86 5/3/2024
4.0.122 91 5/2/2024
4.0.121 111 5/1/2024
4.0.120 120 4/30/2024
4.0.119 106 4/29/2024
4.0.118 124 4/16/2024
4.0.117 113 4/15/2024
4.0.116 124 4/12/2024
4.0.115 144 4/11/2024
4.0.114 109 4/2/2024
4.0.113 113 4/1/2024
4.0.112 129 3/29/2024
4.0.111 125 3/19/2024
4.0.110 116 3/18/2024
4.0.109 115 3/15/2024
4.0.108 111 3/14/2024
4.0.107 109 3/12/2024
4.0.106 123 3/11/2024
4.0.105 111 3/8/2024
4.0.104 122 3/7/2024
4.0.103 118 3/6/2024
4.0.102 120 3/5/2024
4.0.101 131 3/4/2024
4.0.100 134 3/1/2024
4.0.99 114 2/29/2024
4.0.98 117 2/28/2024
4.0.97 126 2/27/2024
4.0.96 129 2/26/2024
4.0.95 110 2/23/2024
4.0.94 109 2/22/2024
4.0.93 134 2/21/2024
4.0.92 118 2/20/2024
4.0.91 120 2/19/2024
4.0.90 118 2/16/2024
4.0.89 129 2/15/2024
4.0.88 109 2/13/2024
4.0.87 119 2/12/2024
4.0.86 126 2/9/2024
4.0.85 126 2/8/2024
4.0.84 120 2/7/2024
4.0.83 111 2/6/2024
4.0.82 118 2/5/2024
4.0.81 115 2/2/2024
4.0.80 113 2/1/2024
4.0.79 112 1/31/2024
4.0.78 111 1/30/2024
4.0.77 109 1/26/2024
4.0.76 118 1/25/2024
4.0.75 98 1/24/2024
4.0.74 115 1/23/2024
4.0.73 110 1/22/2024
4.0.72 125 1/15/2024
4.0.71 122 1/12/2024
4.0.70 116 1/11/2024
4.0.69 133 12/26/2023
4.0.68 130 12/22/2023
4.0.67 120 12/20/2023
4.0.66 134 12/18/2023
4.0.65 140 12/15/2023
4.0.64 120 12/14/2023
4.0.63 136 12/13/2023
4.0.62 142 12/12/2023
4.0.61 196 11/27/2023
4.0.60 162 11/24/2023
4.0.59 169 11/22/2023
4.0.58 135 11/21/2023
4.0.57 154 11/20/2023
4.0.56 186 11/17/2023
4.0.55 150 11/16/2023
4.0.54 167 11/14/2023
4.0.53 152 11/14/2023
4.0.52 137 11/13/2023
4.0.51 151 11/10/2023
4.0.50 143 11/9/2023
4.0.49 142 11/8/2023
4.0.48 149 11/7/2023
4.0.47 177 11/6/2023
4.0.46 183 11/3/2023
4.0.45 177 11/2/2023
4.0.44 171 11/1/2023
4.0.43 155 10/31/2023
4.0.42 175 10/30/2023
4.0.41 155 10/27/2023
4.0.40 150 10/26/2023
4.0.39 160 10/13/2023
4.0.38 168 10/12/2023
4.0.37 159 10/5/2023
4.0.36 172 9/26/2023
4.0.35 160 9/21/2023
4.0.34 171 9/20/2023
4.0.33 177 9/19/2023
4.0.32 151 9/18/2023
4.0.31 170 9/15/2023
4.0.30 184 9/14/2023
4.0.29 171 9/13/2023
4.0.28 176 9/12/2023
4.0.27 173 9/11/2023
4.0.26 198 9/8/2023
4.0.25 193 9/7/2023
4.0.24 171 9/6/2023
4.0.23 190 9/5/2023
4.0.22 188 9/4/2023
4.0.21 182 9/1/2023
4.0.20 183 8/31/2023
4.0.19 179 8/30/2023
4.0.18 207 8/29/2023
4.0.17 177 8/28/2023
4.0.16 184 8/25/2023
4.0.15 155 8/24/2023
4.0.14 194 8/23/2023
4.0.13 226 8/21/2023
4.0.12 192 8/18/2023
4.0.11 187 8/17/2023
4.0.10 207 8/10/2023
4.0.9 201 8/9/2023
4.0.8 196 8/8/2023
4.0.7 186 8/8/2023
4.0.6 189 8/7/2023
4.0.5 216 8/3/2023
4.0.4 196 7/27/2023
4.0.3 200 7/26/2023
4.0.2 195 7/20/2023
4.0.1 182 7/17/2023
4.0.0 350 12/12/2022
3.1.3 564 6/10/2022
3.1.0 680 1/21/2022
3.0.15 515 1/11/2022
3.0.14 518 1/10/2022
3.0.13 510 6/21/2021
3.0.12 543 1/6/2021
3.0.11 550 11/23/2020
3.0.9 630 9/13/2020
3.0.8 599 6/8/2020
3.0.7 676 4/1/2020
3.0.6 615 3/25/2020
3.0.5 642 3/3/2020
3.0.4 679 1/29/2020
3.0.3 643 1/19/2020
3.0.2 762 12/31/2019
3.0.1 711 12/29/2019
3.0.0 640 12/23/2019
2.0.6 975 9/13/2018
2.0.5 1,021 7/26/2018
2.0.4 1,179 6/1/2018
2.0.3 1,128 6/1/2018
2.0.2 1,220 5/22/2018
2.0.1 1,364 2/5/2018
2.0.0 1,343 1/2/2018
1.0.10 1,179 9/29/2017
1.0.9 1,068 8/28/2017
1.0.8 1,131 8/11/2017
1.0.7 1,135 8/11/2017
1.0.6 1,176 8/11/2017
1.0.5 1,178 8/11/2017
1.0.4 1,125 8/11/2017
1.0.3 1,145 8/11/2017
1.0.2 1,128 8/11/2017