TaskMaster 5.0.4

dotnet add package TaskMaster --version 5.0.4
                    
NuGet\Install-Package TaskMaster -Version 5.0.4
                    
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.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TaskMaster" Version="5.0.4" />
                    
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.4
                    
#r "nuget: TaskMaster, 5.0.4"
                    
#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.
#:package TaskMaster@5.0.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TaskMaster&version=5.0.4
                    
Install as a Cake Addin
#tool nuget:?package=TaskMaster&version=5.0.4
                    
Install 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.RegisterTaskMaster();

Or if you are using Canister, you can use the following code:

serviceCollection.AddCanisterModules();

Once it 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 2022

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.4 137 8/19/2025
5.0.3 144 8/4/2025
5.0.2 128 6/27/2025
5.0.1 143 6/27/2025
5.0.0 190 11/24/2024
4.0.187 137 11/15/2024
4.0.186 141 11/14/2024
4.0.185 142 11/13/2024
4.0.184 145 11/12/2024
4.0.183 149 11/11/2024
4.0.182 143 11/7/2024
4.0.181 148 11/6/2024
4.0.180 138 11/5/2024
4.0.179 134 11/4/2024
4.0.178 136 11/1/2024
4.0.177 140 10/31/2024
4.0.176 146 10/29/2024
4.0.175 148 10/29/2024
4.0.174 122 10/15/2024
4.0.173 133 10/14/2024
4.0.172 145 10/11/2024
4.0.171 142 10/10/2024
4.0.170 140 10/8/2024
4.0.169 150 10/2/2024
4.0.168 138 10/1/2024
4.0.167 135 9/30/2024
4.0.166 150 9/24/2024
4.0.165 149 9/17/2024
4.0.164 167 9/10/2024
4.0.163 158 9/3/2024
4.0.162 146 8/30/2024
4.0.161 146 8/28/2024
4.0.160 158 8/27/2024
4.0.159 170 8/26/2024
4.0.158 179 8/23/2024
4.0.157 167 8/22/2024
4.0.156 171 8/21/2024
4.0.155 182 8/20/2024
4.0.154 160 8/16/2024
4.0.153 179 8/15/2024
4.0.152 152 8/6/2024
4.0.151 119 8/5/2024
4.0.150 120 8/2/2024
4.0.149 130 8/1/2024
4.0.148 140 7/26/2024
4.0.147 137 7/25/2024
4.0.146 152 7/12/2024
4.0.145 138 7/11/2024
4.0.144 151 7/2/2024
4.0.143 183 6/28/2024
4.0.142 154 6/27/2024
4.0.141 148 6/26/2024
4.0.140 158 6/24/2024
4.0.139 164 6/20/2024
4.0.138 166 6/19/2024
4.0.137 156 6/18/2024
4.0.136 160 6/17/2024
4.0.135 154 6/14/2024
4.0.134 178 6/13/2024
4.0.133 140 6/3/2024
4.0.132 169 5/31/2024
4.0.131 167 5/30/2024
4.0.130 156 5/20/2024
4.0.129 135 5/17/2024
4.0.128 144 5/16/2024
4.0.127 181 5/9/2024
4.0.126 177 5/8/2024
4.0.125 182 5/7/2024
4.0.124 179 5/6/2024
4.0.123 134 5/3/2024
4.0.122 137 5/2/2024
4.0.121 161 5/1/2024
4.0.120 174 4/30/2024
4.0.119 151 4/29/2024
4.0.118 175 4/16/2024
4.0.117 156 4/15/2024
4.0.116 169 4/12/2024
4.0.115 199 4/11/2024
4.0.114 160 4/2/2024
4.0.113 162 4/1/2024
4.0.112 185 3/29/2024
4.0.111 173 3/19/2024
4.0.110 172 3/18/2024
4.0.109 167 3/15/2024
4.0.108 163 3/14/2024
4.0.107 157 3/12/2024
4.0.106 167 3/11/2024
4.0.105 158 3/8/2024
4.0.104 163 3/7/2024
4.0.103 169 3/6/2024
4.0.102 174 3/5/2024
4.0.101 182 3/4/2024
4.0.100 176 3/1/2024
4.0.99 163 2/29/2024
4.0.98 161 2/28/2024
4.0.97 182 2/27/2024
4.0.96 180 2/26/2024
4.0.95 154 2/23/2024
4.0.94 161 2/22/2024
4.0.93 188 2/21/2024
4.0.92 157 2/20/2024
4.0.91 167 2/19/2024
4.0.90 164 2/16/2024
4.0.89 179 2/15/2024
4.0.88 151 2/13/2024
4.0.87 162 2/12/2024
4.0.86 170 2/9/2024
4.0.85 173 2/8/2024
4.0.84 164 2/7/2024
4.0.83 158 2/6/2024
4.0.82 164 2/5/2024
4.0.81 158 2/2/2024
4.0.80 164 2/1/2024
4.0.79 167 1/31/2024
4.0.78 149 1/30/2024
4.0.77 156 1/26/2024
4.0.76 165 1/25/2024
4.0.75 148 1/24/2024
4.0.74 167 1/23/2024
4.0.73 157 1/22/2024
4.0.72 169 1/15/2024
4.0.71 163 1/12/2024
4.0.70 162 1/11/2024
4.0.69 178 12/26/2023
4.0.68 175 12/22/2023
4.0.67 167 12/20/2023
4.0.66 179 12/18/2023
4.0.65 195 12/15/2023
4.0.64 162 12/14/2023
4.0.63 175 12/13/2023
4.0.62 187 12/12/2023
4.0.61 215 11/27/2023
4.0.60 184 11/24/2023
4.0.59 187 11/22/2023
4.0.58 158 11/21/2023
4.0.57 178 11/20/2023
4.0.56 215 11/17/2023
4.0.55 177 11/16/2023
4.0.54 190 11/14/2023
4.0.53 174 11/14/2023
4.0.52 159 11/13/2023
4.0.51 179 11/10/2023
4.0.50 160 11/9/2023
4.0.49 158 11/8/2023
4.0.48 171 11/7/2023
4.0.47 206 11/6/2023
4.0.46 210 11/3/2023
4.0.45 202 11/2/2023
4.0.44 198 11/1/2023
4.0.43 187 10/31/2023
4.0.42 202 10/30/2023
4.0.41 182 10/27/2023
4.0.40 177 10/26/2023
4.0.39 194 10/13/2023
4.0.38 197 10/12/2023
4.0.37 186 10/5/2023
4.0.36 202 9/26/2023
4.0.35 190 9/21/2023
4.0.34 202 9/20/2023
4.0.33 212 9/19/2023
4.0.32 191 9/18/2023
4.0.31 200 9/15/2023
4.0.30 207 9/14/2023
4.0.29 198 9/13/2023
4.0.28 216 9/12/2023
4.0.27 207 9/11/2023
4.0.26 238 9/8/2023
4.0.25 227 9/7/2023
4.0.24 214 9/6/2023
4.0.23 235 9/5/2023
4.0.22 234 9/4/2023
4.0.21 228 9/1/2023
4.0.20 235 8/31/2023
4.0.19 222 8/30/2023
4.0.18 248 8/29/2023
4.0.17 218 8/28/2023
4.0.16 233 8/25/2023
4.0.15 202 8/24/2023
4.0.14 239 8/23/2023
4.0.13 271 8/21/2023
4.0.12 232 8/18/2023
4.0.11 232 8/17/2023
4.0.10 269 8/10/2023
4.0.9 246 8/9/2023
4.0.8 242 8/8/2023
4.0.7 226 8/8/2023
4.0.6 236 8/7/2023
4.0.5 262 8/3/2023
4.0.4 243 7/27/2023
4.0.3 253 7/26/2023
4.0.2 244 7/20/2023
4.0.1 236 7/17/2023
4.0.0 402 12/12/2022
3.1.3 626 6/10/2022
3.1.0 748 1/21/2022
3.0.15 590 1/11/2022
3.0.14 587 1/10/2022
3.0.13 584 6/21/2021
3.0.12 622 1/6/2021
3.0.11 630 11/23/2020
3.0.9 714 9/13/2020
3.0.8 678 6/8/2020
3.0.7 767 4/1/2020
3.0.6 708 3/25/2020
3.0.5 734 3/3/2020
3.0.4 761 1/29/2020
3.0.3 726 1/19/2020
3.0.2 845 12/31/2019
3.0.1 800 12/29/2019
3.0.0 728 12/23/2019
2.0.6 1,075 9/13/2018
2.0.5 1,178 7/26/2018
2.0.4 1,429 6/1/2018
2.0.3 1,369 6/1/2018
2.0.2 1,468 5/22/2018
2.0.1 1,606 2/5/2018
2.0.0 1,597 1/2/2018
1.0.10 1,342 9/29/2017
1.0.9 1,237 8/28/2017
1.0.8 1,297 8/11/2017
1.0.7 1,298 8/11/2017
1.0.6 1,342 8/11/2017
1.0.5 1,348 8/11/2017
1.0.4 1,297 8/11/2017
1.0.3 1,306 8/11/2017
1.0.2 1,296 8/11/2017