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. 
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 67 11/24/2024
4.0.187 64 11/15/2024
4.0.186 68 11/14/2024
4.0.185 69 11/13/2024
4.0.184 79 11/12/2024
4.0.183 76 11/11/2024
4.0.182 75 11/7/2024
4.0.181 76 11/6/2024
4.0.180 74 11/5/2024
4.0.179 68 11/4/2024
4.0.178 71 11/1/2024
4.0.177 70 10/31/2024
4.0.176 72 10/29/2024
4.0.175 77 10/29/2024
4.0.174 68 10/15/2024
4.0.173 74 10/14/2024
4.0.172 81 10/11/2024
4.0.171 85 10/10/2024
4.0.170 80 10/8/2024
4.0.169 84 10/2/2024
4.0.168 81 10/1/2024
4.0.167 76 9/30/2024
4.0.166 86 9/24/2024
4.0.165 89 9/17/2024
4.0.164 108 9/10/2024
4.0.163 95 9/3/2024
4.0.162 93 8/30/2024
4.0.161 94 8/28/2024
4.0.160 99 8/27/2024
4.0.159 98 8/26/2024
4.0.158 117 8/23/2024
4.0.157 112 8/22/2024
4.0.156 118 8/21/2024
4.0.155 119 8/20/2024
4.0.154 108 8/16/2024
4.0.153 123 8/15/2024
4.0.152 86 8/6/2024
4.0.151 56 8/5/2024
4.0.150 60 8/2/2024
4.0.149 71 8/1/2024
4.0.148 74 7/26/2024
4.0.147 80 7/25/2024
4.0.146 92 7/12/2024
4.0.145 84 7/11/2024
4.0.144 97 7/2/2024
4.0.143 123 6/28/2024
4.0.142 94 6/27/2024
4.0.141 90 6/26/2024
4.0.140 97 6/24/2024
4.0.139 106 6/20/2024
4.0.138 100 6/19/2024
4.0.137 93 6/18/2024
4.0.136 97 6/17/2024
4.0.135 95 6/14/2024
4.0.134 121 6/13/2024
4.0.133 89 6/3/2024
4.0.132 111 5/31/2024
4.0.131 104 5/30/2024
4.0.130 91 5/20/2024
4.0.129 77 5/17/2024
4.0.128 79 5/16/2024
4.0.127 125 5/9/2024
4.0.126 112 5/8/2024
4.0.125 122 5/7/2024
4.0.124 122 5/6/2024
4.0.123 78 5/3/2024
4.0.122 85 5/2/2024
4.0.121 101 5/1/2024
4.0.120 110 4/30/2024
4.0.119 100 4/29/2024
4.0.118 118 4/16/2024
4.0.117 107 4/15/2024
4.0.116 114 4/12/2024
4.0.115 136 4/11/2024
4.0.114 105 4/2/2024
4.0.113 107 4/1/2024
4.0.112 117 3/29/2024
4.0.111 119 3/19/2024
4.0.110 108 3/18/2024
4.0.109 107 3/15/2024
4.0.108 104 3/14/2024
4.0.107 103 3/12/2024
4.0.106 117 3/11/2024
4.0.105 107 3/8/2024
4.0.104 118 3/7/2024
4.0.103 114 3/6/2024
4.0.102 116 3/5/2024
4.0.101 127 3/4/2024
4.0.100 128 3/1/2024
4.0.99 107 2/29/2024
4.0.98 111 2/28/2024
4.0.97 119 2/27/2024
4.0.96 122 2/26/2024
4.0.95 102 2/23/2024
4.0.94 98 2/22/2024
4.0.93 123 2/21/2024
4.0.92 106 2/20/2024
4.0.91 110 2/19/2024
4.0.90 109 2/16/2024
4.0.89 120 2/15/2024
4.0.88 104 2/13/2024
4.0.87 110 2/12/2024
4.0.86 115 2/9/2024
4.0.85 114 2/8/2024
4.0.84 114 2/7/2024
4.0.83 104 2/6/2024
4.0.82 113 2/5/2024
4.0.81 110 2/2/2024
4.0.80 108 2/1/2024
4.0.79 107 1/31/2024
4.0.78 106 1/30/2024
4.0.77 104 1/26/2024
4.0.76 113 1/25/2024
4.0.75 93 1/24/2024
4.0.74 110 1/23/2024
4.0.73 105 1/22/2024
4.0.72 120 1/15/2024
4.0.71 114 1/12/2024
4.0.70 109 1/11/2024
4.0.69 128 12/26/2023
4.0.68 125 12/22/2023
4.0.67 115 12/20/2023
4.0.66 126 12/18/2023
4.0.65 135 12/15/2023
4.0.64 113 12/14/2023
4.0.63 131 12/13/2023
4.0.62 137 12/12/2023
4.0.61 191 11/27/2023
4.0.60 157 11/24/2023
4.0.59 162 11/22/2023
4.0.58 130 11/21/2023
4.0.57 149 11/20/2023
4.0.56 181 11/17/2023
4.0.55 145 11/16/2023
4.0.54 158 11/14/2023
4.0.53 145 11/14/2023
4.0.52 127 11/13/2023
4.0.51 144 11/10/2023
4.0.50 136 11/9/2023
4.0.49 134 11/8/2023
4.0.48 143 11/7/2023
4.0.47 169 11/6/2023
4.0.46 176 11/3/2023
4.0.45 171 11/2/2023
4.0.44 164 11/1/2023
4.0.43 146 10/31/2023
4.0.42 168 10/30/2023
4.0.41 148 10/27/2023
4.0.40 143 10/26/2023
4.0.39 153 10/13/2023
4.0.38 161 10/12/2023
4.0.37 152 10/5/2023
4.0.36 165 9/26/2023
4.0.35 153 9/21/2023
4.0.34 164 9/20/2023
4.0.33 170 9/19/2023
4.0.32 139 9/18/2023
4.0.31 163 9/15/2023
4.0.30 177 9/14/2023
4.0.29 163 9/13/2023
4.0.28 167 9/12/2023
4.0.27 166 9/11/2023
4.0.26 191 9/8/2023
4.0.25 186 9/7/2023
4.0.24 164 9/6/2023
4.0.23 183 9/5/2023
4.0.22 181 9/4/2023
4.0.21 173 9/1/2023
4.0.20 176 8/31/2023
4.0.19 174 8/30/2023
4.0.18 196 8/29/2023
4.0.17 170 8/28/2023
4.0.16 179 8/25/2023
4.0.15 150 8/24/2023
4.0.14 189 8/23/2023
4.0.13 221 8/21/2023
4.0.12 187 8/18/2023
4.0.11 182 8/17/2023
4.0.10 202 8/10/2023
4.0.9 196 8/9/2023
4.0.8 190 8/8/2023
4.0.7 180 8/8/2023
4.0.6 183 8/7/2023
4.0.5 211 8/3/2023
4.0.4 190 7/27/2023
4.0.3 195 7/26/2023
4.0.2 190 7/20/2023
4.0.1 175 7/17/2023
4.0.0 339 12/12/2022
3.1.3 549 6/10/2022
3.1.0 663 1/21/2022
3.0.15 498 1/11/2022
3.0.14 500 1/10/2022
3.0.13 494 6/21/2021
3.0.12 523 1/6/2021
3.0.11 531 11/23/2020
3.0.9 611 9/13/2020
3.0.8 579 6/8/2020
3.0.7 654 4/1/2020
3.0.6 594 3/25/2020
3.0.5 621 3/3/2020
3.0.4 657 1/29/2020
3.0.3 620 1/19/2020
3.0.2 740 12/31/2019
3.0.1 690 12/29/2019
3.0.0 617 12/23/2019
2.0.6 933 9/13/2018
2.0.5 964 7/26/2018
2.0.4 1,095 6/1/2018
2.0.3 1,042 6/1/2018
2.0.2 1,133 5/22/2018
2.0.1 1,266 2/5/2018
2.0.0 1,245 1/2/2018
1.0.10 1,114 9/29/2017
1.0.9 1,002 8/28/2017
1.0.8 1,065 8/11/2017
1.0.7 1,069 8/11/2017
1.0.6 1,108 8/11/2017
1.0.5 1,112 8/11/2017
1.0.4 1,059 8/11/2017
1.0.3 1,078 8/11/2017
1.0.2 1,064 8/11/2017