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.
<PackageVersion Include="TaskMaster" Version="5.0.0" />
                    
Directory.Packages.props
<PackageReference Include="TaskMaster" />
                    
Project file
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 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.
#addin nuget:?package=TaskMaster&version=5.0.0
                    
Install TaskMaster as a Cake Addin
#tool nuget:?package=TaskMaster&version=5.0.0
                    
Install TaskMaster as a Cake Tool

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 122 11/24/2024
4.0.187 86 11/15/2024
4.0.186 93 11/14/2024
4.0.185 95 11/13/2024
4.0.184 100 11/12/2024
4.0.183 100 11/11/2024
4.0.182 93 11/7/2024
4.0.181 95 11/6/2024
4.0.180 91 11/5/2024
4.0.179 87 11/4/2024
4.0.178 93 11/1/2024
4.0.177 92 10/31/2024
4.0.176 94 10/29/2024
4.0.175 96 10/29/2024
4.0.174 81 10/15/2024
4.0.173 86 10/14/2024
4.0.172 98 10/11/2024
4.0.171 97 10/10/2024
4.0.170 91 10/8/2024
4.0.169 95 10/2/2024
4.0.168 91 10/1/2024
4.0.167 87 9/30/2024
4.0.166 100 9/24/2024
4.0.165 102 9/17/2024
4.0.164 122 9/10/2024
4.0.163 106 9/3/2024
4.0.162 101 8/30/2024
4.0.161 103 8/28/2024
4.0.160 108 8/27/2024
4.0.159 114 8/26/2024
4.0.158 127 8/23/2024
4.0.157 120 8/22/2024
4.0.156 126 8/21/2024
4.0.155 128 8/20/2024
4.0.154 115 8/16/2024
4.0.153 133 8/15/2024
4.0.152 96 8/6/2024
4.0.151 64 8/5/2024
4.0.150 70 8/2/2024
4.0.149 80 8/1/2024
4.0.148 83 7/26/2024
4.0.147 89 7/25/2024
4.0.146 102 7/12/2024
4.0.145 95 7/11/2024
4.0.144 106 7/2/2024
4.0.143 134 6/28/2024
4.0.142 104 6/27/2024
4.0.141 101 6/26/2024
4.0.140 108 6/24/2024
4.0.139 116 6/20/2024
4.0.138 111 6/19/2024
4.0.137 105 6/18/2024
4.0.136 110 6/17/2024
4.0.135 104 6/14/2024
4.0.134 131 6/13/2024
4.0.133 96 6/3/2024
4.0.132 118 5/31/2024
4.0.131 114 5/30/2024
4.0.130 101 5/20/2024
4.0.129 88 5/17/2024
4.0.128 90 5/16/2024
4.0.127 139 5/9/2024
4.0.126 125 5/8/2024
4.0.125 134 5/7/2024
4.0.124 131 5/6/2024
4.0.123 86 5/3/2024
4.0.122 91 5/2/2024
4.0.121 112 5/1/2024
4.0.120 120 4/30/2024
4.0.119 106 4/29/2024
4.0.118 125 4/16/2024
4.0.117 113 4/15/2024
4.0.116 125 4/12/2024
4.0.115 146 4/11/2024
4.0.114 111 4/2/2024
4.0.113 115 4/1/2024
4.0.112 136 3/29/2024
4.0.111 126 3/19/2024
4.0.110 118 3/18/2024
4.0.109 116 3/15/2024
4.0.108 112 3/14/2024
4.0.107 110 3/12/2024
4.0.106 125 3/11/2024
4.0.105 113 3/8/2024
4.0.104 124 3/7/2024
4.0.103 120 3/6/2024
4.0.102 122 3/5/2024
4.0.101 133 3/4/2024
4.0.100 135 3/1/2024
4.0.99 116 2/29/2024
4.0.98 119 2/28/2024
4.0.97 128 2/27/2024
4.0.96 131 2/26/2024
4.0.95 112 2/23/2024
4.0.94 110 2/22/2024
4.0.93 135 2/21/2024
4.0.92 119 2/20/2024
4.0.91 121 2/19/2024
4.0.90 118 2/16/2024
4.0.89 129 2/15/2024
4.0.88 110 2/13/2024
4.0.87 119 2/12/2024
4.0.86 127 2/9/2024
4.0.85 127 2/8/2024
4.0.84 120 2/7/2024
4.0.83 112 2/6/2024
4.0.82 119 2/5/2024
4.0.81 115 2/2/2024
4.0.80 114 2/1/2024
4.0.79 113 1/31/2024
4.0.78 112 1/30/2024
4.0.77 110 1/26/2024
4.0.76 120 1/25/2024
4.0.75 98 1/24/2024
4.0.74 116 1/23/2024
4.0.73 111 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 131 12/22/2023
4.0.67 122 12/20/2023
4.0.66 135 12/18/2023
4.0.65 141 12/15/2023
4.0.64 121 12/14/2023
4.0.63 138 12/13/2023
4.0.62 143 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 187 11/17/2023
4.0.55 150 11/16/2023
4.0.54 167 11/14/2023
4.0.53 153 11/14/2023
4.0.52 138 11/13/2023
4.0.51 152 11/10/2023
4.0.50 144 11/9/2023
4.0.49 143 11/8/2023
4.0.48 150 11/7/2023
4.0.47 177 11/6/2023
4.0.46 184 11/3/2023
4.0.45 178 11/2/2023
4.0.44 171 11/1/2023
4.0.43 156 10/31/2023
4.0.42 176 10/30/2023
4.0.41 155 10/27/2023
4.0.40 150 10/26/2023
4.0.39 161 10/13/2023
4.0.38 169 10/12/2023
4.0.37 159 10/5/2023
4.0.36 174 9/26/2023
4.0.35 161 9/21/2023
4.0.34 172 9/20/2023
4.0.33 177 9/19/2023
4.0.32 152 9/18/2023
4.0.31 170 9/15/2023
4.0.30 184 9/14/2023
4.0.29 172 9/13/2023
4.0.28 176 9/12/2023
4.0.27 174 9/11/2023
4.0.26 200 9/8/2023
4.0.25 194 9/7/2023
4.0.24 172 9/6/2023
4.0.23 190 9/5/2023
4.0.22 189 9/4/2023
4.0.21 183 9/1/2023
4.0.20 184 8/31/2023
4.0.19 181 8/30/2023
4.0.18 209 8/29/2023
4.0.17 177 8/28/2023
4.0.16 185 8/25/2023
4.0.15 155 8/24/2023
4.0.14 195 8/23/2023
4.0.13 226 8/21/2023
4.0.12 193 8/18/2023
4.0.11 187 8/17/2023
4.0.10 207 8/10/2023
4.0.9 202 8/9/2023
4.0.8 197 8/8/2023
4.0.7 187 8/8/2023
4.0.6 191 8/7/2023
4.0.5 217 8/3/2023
4.0.4 196 7/27/2023
4.0.3 202 7/26/2023
4.0.2 196 7/20/2023
4.0.1 182 7/17/2023
4.0.0 351 12/12/2022
3.1.3 566 6/10/2022
3.1.0 682 1/21/2022
3.0.15 517 1/11/2022
3.0.14 520 1/10/2022
3.0.13 512 6/21/2021
3.0.12 547 1/6/2021
3.0.11 554 11/23/2020
3.0.9 634 9/13/2020
3.0.8 603 6/8/2020
3.0.7 680 4/1/2020
3.0.6 619 3/25/2020
3.0.5 646 3/3/2020
3.0.4 683 1/29/2020
3.0.3 647 1/19/2020
3.0.2 767 12/31/2019
3.0.1 715 12/29/2019
3.0.0 644 12/23/2019
2.0.6 979 9/13/2018
2.0.5 1,029 7/26/2018
2.0.4 1,191 6/1/2018
2.0.3 1,140 6/1/2018
2.0.2 1,232 5/22/2018
2.0.1 1,376 2/5/2018
2.0.0 1,355 1/2/2018
1.0.10 1,187 9/29/2017
1.0.9 1,076 8/28/2017
1.0.8 1,140 8/11/2017
1.0.7 1,143 8/11/2017
1.0.6 1,184 8/11/2017
1.0.5 1,186 8/11/2017
1.0.4 1,133 8/11/2017
1.0.3 1,153 8/11/2017
1.0.2 1,137 8/11/2017