TaskMaster 4.0.35

There is a newer version of this package available.
See the version list below for details.
dotnet add package TaskMaster --version 4.0.35
                    
NuGet\Install-Package TaskMaster -Version 4.0.35
                    
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="4.0.35" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TaskMaster" Version="4.0.35" />
                    
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 4.0.35
                    
#r "nuget: TaskMaster, 4.0.35"
                    
#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@4.0.35
                    
#: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=4.0.35
                    
Install as a Cake Addin
#tool nuget:?package=TaskMaster&version=4.0.35
                    
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.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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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.5 184 10/12/2025
5.0.4 212 8/19/2025
5.0.3 169 8/4/2025
5.0.2 176 6/27/2025
5.0.1 193 6/27/2025
5.0.0 235 11/24/2024
4.0.187 179 11/15/2024
4.0.186 186 11/14/2024
4.0.185 179 11/13/2024
4.0.184 190 11/12/2024
4.0.183 175 11/11/2024
4.0.182 196 11/7/2024
4.0.181 200 11/6/2024
4.0.180 191 11/5/2024
4.0.179 171 11/4/2024
4.0.178 170 11/1/2024
4.0.177 190 10/31/2024
4.0.176 178 10/29/2024
4.0.175 196 10/29/2024
4.0.174 146 10/15/2024
4.0.173 157 10/14/2024
4.0.172 188 10/11/2024
4.0.171 180 10/10/2024
4.0.170 166 10/8/2024
4.0.169 198 10/2/2024
4.0.168 175 10/1/2024
4.0.167 190 9/30/2024
4.0.166 196 9/24/2024
4.0.165 196 9/17/2024
4.0.164 217 9/10/2024
4.0.163 213 9/3/2024
4.0.162 194 8/30/2024
4.0.161 196 8/28/2024
4.0.160 218 8/27/2024
4.0.159 224 8/26/2024
4.0.158 216 8/23/2024
4.0.157 206 8/22/2024
4.0.156 208 8/21/2024
4.0.155 238 8/20/2024
4.0.154 205 8/16/2024
4.0.153 231 8/15/2024
4.0.152 203 8/6/2024
4.0.151 163 8/5/2024
4.0.150 166 8/2/2024
4.0.149 176 8/1/2024
4.0.148 171 7/26/2024
4.0.147 182 7/25/2024
4.0.146 198 7/12/2024
4.0.145 184 7/11/2024
4.0.144 191 7/2/2024
4.0.143 231 6/28/2024
4.0.142 198 6/27/2024
4.0.141 185 6/26/2024
4.0.140 197 6/24/2024
4.0.139 209 6/20/2024
4.0.138 215 6/19/2024
4.0.137 196 6/18/2024
4.0.136 201 6/17/2024
4.0.135 198 6/14/2024
4.0.134 234 6/13/2024
4.0.133 189 6/3/2024
4.0.132 211 5/31/2024
4.0.131 224 5/30/2024
4.0.130 206 5/20/2024
4.0.129 175 5/17/2024
4.0.128 188 5/16/2024
4.0.127 213 5/9/2024
4.0.126 228 5/8/2024
4.0.125 229 5/7/2024
4.0.124 223 5/6/2024
4.0.123 179 5/3/2024
4.0.122 177 5/2/2024
4.0.121 209 5/1/2024
4.0.120 219 4/30/2024
4.0.119 197 4/29/2024
4.0.118 222 4/16/2024
4.0.117 189 4/15/2024
4.0.116 212 4/12/2024
4.0.115 248 4/11/2024
4.0.114 204 4/2/2024
4.0.113 216 4/1/2024
4.0.112 232 3/29/2024
4.0.111 236 3/19/2024
4.0.110 230 3/18/2024
4.0.109 214 3/15/2024
4.0.108 213 3/14/2024
4.0.107 207 3/12/2024
4.0.106 220 3/11/2024
4.0.105 200 3/8/2024
4.0.104 211 3/7/2024
4.0.103 221 3/6/2024
4.0.102 225 3/5/2024
4.0.101 229 3/4/2024
4.0.100 202 3/1/2024
4.0.99 219 2/29/2024
4.0.98 184 2/28/2024
4.0.97 227 2/27/2024
4.0.96 224 2/26/2024
4.0.95 190 2/23/2024
4.0.94 210 2/22/2024
4.0.93 229 2/21/2024
4.0.92 192 2/20/2024
4.0.91 215 2/19/2024
4.0.90 207 2/16/2024
4.0.89 233 2/15/2024
4.0.88 183 2/13/2024
4.0.87 210 2/12/2024
4.0.86 211 2/9/2024
4.0.85 227 2/8/2024
4.0.84 207 2/7/2024
4.0.83 200 2/6/2024
4.0.82 205 2/5/2024
4.0.81 191 2/2/2024
4.0.80 201 2/1/2024
4.0.79 211 1/31/2024
4.0.78 182 1/30/2024
4.0.77 204 1/26/2024
4.0.76 203 1/25/2024
4.0.75 198 1/24/2024
4.0.74 212 1/23/2024
4.0.73 203 1/22/2024
4.0.72 214 1/15/2024
4.0.71 201 1/12/2024
4.0.70 212 1/11/2024
4.0.69 227 12/26/2023
4.0.68 226 12/22/2023
4.0.67 217 12/20/2023
4.0.66 221 12/18/2023
4.0.65 257 12/15/2023
4.0.64 208 12/14/2023
4.0.63 212 12/13/2023
4.0.62 230 12/12/2023
4.0.61 243 11/27/2023
4.0.60 213 11/24/2023
4.0.59 228 11/22/2023
4.0.58 193 11/21/2023
4.0.57 216 11/20/2023
4.0.56 252 11/17/2023
4.0.55 208 11/16/2023
4.0.54 235 11/14/2023
4.0.53 201 11/14/2023
4.0.52 204 11/13/2023
4.0.51 218 11/10/2023
4.0.50 190 11/9/2023
4.0.49 185 11/8/2023
4.0.48 202 11/7/2023
4.0.47 244 11/6/2023
4.0.46 257 11/3/2023
4.0.45 251 11/2/2023
4.0.44 238 11/1/2023
4.0.43 224 10/31/2023
4.0.42 252 10/30/2023
4.0.41 220 10/27/2023
4.0.40 220 10/26/2023
4.0.39 222 10/13/2023
4.0.38 225 10/12/2023
4.0.37 227 10/5/2023
4.0.36 233 9/26/2023
4.0.35 228 9/21/2023
4.0.34 237 9/20/2023
4.0.33 247 9/19/2023
4.0.32 229 9/18/2023
4.0.31 245 9/15/2023
4.0.30 246 9/14/2023
4.0.29 240 9/13/2023
4.0.28 265 9/12/2023
4.0.27 249 9/11/2023
4.0.26 284 9/8/2023
4.0.25 258 9/7/2023
4.0.24 259 9/6/2023
4.0.23 281 9/5/2023
4.0.22 264 9/4/2023
4.0.21 267 9/1/2023
4.0.20 278 8/31/2023
4.0.19 262 8/30/2023
4.0.18 286 8/29/2023
4.0.17 256 8/28/2023
4.0.16 272 8/25/2023
4.0.15 243 8/24/2023
4.0.14 280 8/23/2023
4.0.13 313 8/21/2023
4.0.12 251 8/18/2023
4.0.11 277 8/17/2023
4.0.10 309 8/10/2023
4.0.9 287 8/9/2023
4.0.8 289 8/8/2023
4.0.7 256 8/8/2023
4.0.6 280 8/7/2023
4.0.5 305 8/3/2023
4.0.4 292 7/27/2023
4.0.3 296 7/26/2023
4.0.2 292 7/20/2023
4.0.1 280 7/17/2023
4.0.0 470 12/12/2022
3.1.3 699 6/10/2022
3.1.0 828 1/21/2022
3.0.15 665 1/11/2022
3.0.14 664 1/10/2022
3.0.13 658 6/21/2021
3.0.12 684 1/6/2021
3.0.11 688 11/23/2020
3.0.9 804 9/13/2020
3.0.8 739 6/8/2020
3.0.7 837 4/1/2020
3.0.6 799 3/25/2020
3.0.5 809 3/3/2020
3.0.4 819 1/29/2020
3.0.3 803 1/19/2020
3.0.2 892 12/31/2019
3.0.1 867 12/29/2019
3.0.0 780 12/23/2019
2.0.6 1,160 9/13/2018
2.0.5 1,261 7/26/2018
2.0.4 1,566 6/1/2018
2.0.3 1,482 6/1/2018
2.0.2 1,584 5/22/2018
2.0.1 1,710 2/5/2018
2.0.0 1,707 1/2/2018
1.0.10 1,414 9/29/2017
1.0.9 1,325 8/28/2017
1.0.8 1,380 8/11/2017
1.0.7 1,407 8/11/2017
1.0.6 1,417 8/11/2017
1.0.5 1,456 8/11/2017
1.0.4 1,398 8/11/2017
1.0.3 1,413 8/11/2017
1.0.2 1,375 8/11/2017