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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 150 11/24/2024
4.0.187 100 11/15/2024
4.0.186 108 11/14/2024
4.0.185 109 11/13/2024
4.0.184 114 11/12/2024
4.0.183 114 11/11/2024
4.0.182 107 11/7/2024
4.0.181 109 11/6/2024
4.0.180 105 11/5/2024
4.0.179 102 11/4/2024
4.0.178 107 11/1/2024
4.0.177 107 10/31/2024
4.0.176 110 10/29/2024
4.0.175 110 10/29/2024
4.0.174 97 10/15/2024
4.0.173 109 10/14/2024
4.0.172 112 10/11/2024
4.0.171 112 10/10/2024
4.0.170 108 10/8/2024
4.0.169 110 10/2/2024
4.0.168 106 10/1/2024
4.0.167 102 9/30/2024
4.0.166 115 9/24/2024
4.0.165 117 9/17/2024
4.0.164 136 9/10/2024
4.0.163 121 9/3/2024
4.0.162 115 8/30/2024
4.0.161 118 8/28/2024
4.0.160 123 8/27/2024
4.0.159 129 8/26/2024
4.0.158 142 8/23/2024
4.0.157 135 8/22/2024
4.0.156 141 8/21/2024
4.0.155 142 8/20/2024
4.0.154 129 8/16/2024
4.0.153 147 8/15/2024
4.0.152 110 8/6/2024
4.0.151 78 8/5/2024
4.0.150 84 8/2/2024
4.0.149 94 8/1/2024
4.0.148 97 7/26/2024
4.0.147 103 7/25/2024
4.0.146 117 7/12/2024
4.0.145 109 7/11/2024
4.0.144 120 7/2/2024
4.0.143 148 6/28/2024
4.0.142 120 6/27/2024
4.0.141 115 6/26/2024
4.0.140 122 6/24/2024
4.0.139 131 6/20/2024
4.0.138 125 6/19/2024
4.0.137 120 6/18/2024
4.0.136 126 6/17/2024
4.0.135 118 6/14/2024
4.0.134 145 6/13/2024
4.0.133 111 6/3/2024
4.0.132 132 5/31/2024
4.0.131 129 5/30/2024
4.0.130 115 5/20/2024
4.0.129 102 5/17/2024
4.0.128 104 5/16/2024
4.0.127 154 5/9/2024
4.0.126 139 5/8/2024
4.0.125 148 5/7/2024
4.0.124 146 5/6/2024
4.0.123 100 5/3/2024
4.0.122 106 5/2/2024
4.0.121 127 5/1/2024
4.0.120 134 4/30/2024
4.0.119 120 4/29/2024
4.0.118 140 4/16/2024
4.0.117 128 4/15/2024
4.0.116 139 4/12/2024
4.0.115 161 4/11/2024
4.0.114 125 4/2/2024
4.0.113 129 4/1/2024
4.0.112 152 3/29/2024
4.0.111 141 3/19/2024
4.0.110 133 3/18/2024
4.0.109 131 3/15/2024
4.0.108 127 3/14/2024
4.0.107 128 3/12/2024
4.0.106 140 3/11/2024
4.0.105 128 3/8/2024
4.0.104 139 3/7/2024
4.0.103 135 3/6/2024
4.0.102 137 3/5/2024
4.0.101 148 3/4/2024
4.0.100 151 3/1/2024
4.0.99 132 2/29/2024
4.0.98 135 2/28/2024
4.0.97 144 2/27/2024
4.0.96 149 2/26/2024
4.0.95 126 2/23/2024
4.0.94 124 2/22/2024
4.0.93 149 2/21/2024
4.0.92 135 2/20/2024
4.0.91 135 2/19/2024
4.0.90 133 2/16/2024
4.0.89 143 2/15/2024
4.0.88 125 2/13/2024
4.0.87 133 2/12/2024
4.0.86 141 2/9/2024
4.0.85 141 2/8/2024
4.0.84 135 2/7/2024
4.0.83 126 2/6/2024
4.0.82 133 2/5/2024
4.0.81 130 2/2/2024
4.0.80 129 2/1/2024
4.0.79 127 1/31/2024
4.0.78 126 1/30/2024
4.0.77 124 1/26/2024
4.0.76 135 1/25/2024
4.0.75 112 1/24/2024
4.0.74 130 1/23/2024
4.0.73 126 1/22/2024
4.0.72 139 1/15/2024
4.0.71 136 1/12/2024
4.0.70 130 1/11/2024
4.0.69 147 12/26/2023
4.0.68 145 12/22/2023
4.0.67 136 12/20/2023
4.0.66 149 12/18/2023
4.0.65 162 12/15/2023
4.0.64 136 12/14/2023
4.0.63 153 12/13/2023
4.0.62 159 12/12/2023
4.0.61 200 11/27/2023
4.0.60 166 11/24/2023
4.0.59 174 11/22/2023
4.0.58 141 11/21/2023
4.0.57 158 11/20/2023
4.0.56 191 11/17/2023
4.0.55 154 11/16/2023
4.0.54 171 11/14/2023
4.0.53 157 11/14/2023
4.0.52 142 11/13/2023
4.0.51 158 11/10/2023
4.0.50 148 11/9/2023
4.0.49 148 11/8/2023
4.0.48 154 11/7/2023
4.0.47 182 11/6/2023
4.0.46 188 11/3/2023
4.0.45 183 11/2/2023
4.0.44 175 11/1/2023
4.0.43 166 10/31/2023
4.0.42 181 10/30/2023
4.0.41 159 10/27/2023
4.0.40 154 10/26/2023
4.0.39 166 10/13/2023
4.0.38 174 10/12/2023
4.0.37 163 10/5/2023
4.0.36 178 9/26/2023
4.0.35 165 9/21/2023
4.0.34 176 9/20/2023
4.0.33 182 9/19/2023
4.0.32 165 9/18/2023
4.0.31 174 9/15/2023
4.0.30 189 9/14/2023
4.0.29 176 9/13/2023
4.0.28 184 9/12/2023
4.0.27 181 9/11/2023
4.0.26 207 9/8/2023
4.0.25 201 9/7/2023
4.0.24 179 9/6/2023
4.0.23 198 9/5/2023
4.0.22 197 9/4/2023
4.0.21 191 9/1/2023
4.0.20 191 8/31/2023
4.0.19 188 8/30/2023
4.0.18 216 8/29/2023
4.0.17 184 8/28/2023
4.0.16 198 8/25/2023
4.0.15 162 8/24/2023
4.0.14 202 8/23/2023
4.0.13 234 8/21/2023
4.0.12 201 8/18/2023
4.0.11 196 8/17/2023
4.0.10 226 8/10/2023
4.0.9 210 8/9/2023
4.0.8 205 8/8/2023
4.0.7 195 8/8/2023
4.0.6 201 8/7/2023
4.0.5 224 8/3/2023
4.0.4 205 7/27/2023
4.0.3 210 7/26/2023
4.0.2 206 7/20/2023
4.0.1 194 7/17/2023
4.0.0 362 12/12/2022
3.1.3 580 6/10/2022
3.1.0 700 1/21/2022
3.0.15 535 1/11/2022
3.0.14 540 1/10/2022
3.0.13 531 6/21/2021
3.0.12 570 1/6/2021
3.0.11 578 11/23/2020
3.0.9 658 9/13/2020
3.0.8 628 6/8/2020
3.0.7 708 4/1/2020
3.0.6 647 3/25/2020
3.0.5 675 3/3/2020
3.0.4 712 1/29/2020
3.0.3 675 1/19/2020
3.0.2 795 12/31/2019
3.0.1 743 12/29/2019
3.0.0 672 12/23/2019
2.0.6 1,015 9/13/2018
2.0.5 1,090 7/26/2018
2.0.4 1,281 6/1/2018
2.0.3 1,231 6/1/2018
2.0.2 1,323 5/22/2018
2.0.1 1,475 2/5/2018
2.0.0 1,454 1/2/2018
1.0.10 1,251 9/29/2017
1.0.9 1,141 8/28/2017
1.0.8 1,205 8/11/2017
1.0.7 1,208 8/11/2017
1.0.6 1,248 8/11/2017
1.0.5 1,250 8/11/2017
1.0.4 1,197 8/11/2017
1.0.3 1,217 8/11/2017
1.0.2 1,204 8/11/2017