TaskMaster 4.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package TaskMaster --version 4.0.1
                    
NuGet\Install-Package TaskMaster -Version 4.0.1
                    
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.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TaskMaster" Version="4.0.1" />
                    
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.1
                    
#r "nuget: TaskMaster, 4.0.1"
                    
#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.1
                    
#: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.1
                    
Install as a Cake Addin
#tool nuget:?package=TaskMaster&version=4.0.1
                    
Install as a Cake Tool

TaskMaster

TaskMaster is a basic library to help with running tasks only after certain criteria are met.

Build status

Basic Usage

The system relies on an IoC wrapper called Canister. While Canister has a built in IoC container, it's purpose is to actually wrap your container of choice in a way that simplifies setup and usage for other libraries that don't want to be tied to a specific IoC container. TaskMaster uses it to detect and pull in various info. As such you must set up Canister in order to use TaskMaster:

Canister.Builder.CreateContainer(new List<ServiceDescriptor>())
                .RegisterTaskMaster()
                .Build();
				

You must also register any assemblies that will contain your tasks with Canister in order for the system to find them:

Canister.Builder.CreateContainer(new List<ServiceDescriptor>())
				.AddAssembly(typeof(MyTask).GetTypeInfo().Assembly)
                .RegisterTaskMaster()
                .Build();

This is required prior to using the TaskMaster class for the first time. Once Canister is set up, you can use the TaskMaster class:

var Manager = new TaskMaster.TaskMaster();
Manager.Run();

The TaskMaster class will handle discovery of tasks, prioritization, and running of tasks. It will also log any errors that it finds to Serilog. If Serilog is not registered to Canister, it will default to an empty logger that does nothing. However if one is specified it will log events as they occur to the ILogger class.

Creating a task

Creating a task is rather simple, you just need to inherit a class from ITask:

/// <summary>
/// Basic hello world task
/// </summary>
public class HelloWorldTask : ITask
{
    /// <summary>
    /// Gets the frequencies.
    /// </summary>
    /// <value>The frequencies.</value>
    public IFrequency[] Frequencies => new IFrequency[] { new RunAlways() };

    /// <summary>
    /// Gets the name.
    /// </summary>
    /// <value>The name.</value>
    public string Name => "Hello World";

	/// <summary>
    /// Order to run it in (items with the same Priority value will be run in parallel)
    /// </summary>
    public int Priority => 1;

    /// <summary>
    /// Executes the specified last run.
    /// </summary>
    /// <param name="lastRun">The last run.</param>
    /// <returns></returns>
    public bool Execute(DateTime lastRun)
    {
        Console.WriteLine("Hello World");
        return true;
    }

    /// <summary>
    /// Initializes the specified data manager.
    /// </summary>
    /// <param name="dataManager">The data manager.</param>
    /// <returns></returns>
    public bool Initialize(IDataManager dataManager)
    {
        return true;
    }
}

The above task runs every time the TaskManager's Run method is called. However you can specify another or even multiple frequencies at which to run. The name of the task is Hello World. As such all logged events will use that name. The priority is set to 1, which determines the batch they are run in. Lower numbered items are run first and if more than one task has the same priority, they will be run at the same time in parallel.

The Initialization function is called when the item is created. The function is passed in an IDataManager class that will handle saving/getting configuration data for the task. By default the data manager saves configuration data in json serialized strings but this can be changed by creating your own data manager.

The Execute function is called when the task is actually triggered. As such that is where your task's actual work should go.

Installation

The library is available via Nuget with the package name "TaskMaster". To install it run the following command in the Package Manager Console:

Install-Package TaskMaster

Build Process

In order to build the library you will require the following as a minimum:

  1. Visual Studio 2017

Other than that, just clone the project and you should be able to load the solution and build without too much effort.

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.2 104 6/27/2025
5.0.1 122 6/27/2025
5.0.0 168 11/24/2024
4.0.187 111 11/15/2024
4.0.186 118 11/14/2024
4.0.185 122 11/13/2024
4.0.184 125 11/12/2024
4.0.183 130 11/11/2024
4.0.182 122 11/7/2024
4.0.181 125 11/6/2024
4.0.180 117 11/5/2024
4.0.179 114 11/4/2024
4.0.178 116 11/1/2024
4.0.177 117 10/31/2024
4.0.176 119 10/29/2024
4.0.175 123 10/29/2024
4.0.174 107 10/15/2024
4.0.173 118 10/14/2024
4.0.172 127 10/11/2024
4.0.171 123 10/10/2024
4.0.170 121 10/8/2024
4.0.169 124 10/2/2024
4.0.168 116 10/1/2024
4.0.167 116 9/30/2024
4.0.166 130 9/24/2024
4.0.165 131 9/17/2024
4.0.164 149 9/10/2024
4.0.163 134 9/3/2024
4.0.162 127 8/30/2024
4.0.161 130 8/28/2024
4.0.160 137 8/27/2024
4.0.159 147 8/26/2024
4.0.158 153 8/23/2024
4.0.157 146 8/22/2024
4.0.156 152 8/21/2024
4.0.155 155 8/20/2024
4.0.154 140 8/16/2024
4.0.153 158 8/15/2024
4.0.152 125 8/6/2024
4.0.151 94 8/5/2024
4.0.150 99 8/2/2024
4.0.149 111 8/1/2024
4.0.148 117 7/26/2024
4.0.147 115 7/25/2024
4.0.146 131 7/12/2024
4.0.145 121 7/11/2024
4.0.144 133 7/2/2024
4.0.143 163 6/28/2024
4.0.142 134 6/27/2024
4.0.141 130 6/26/2024
4.0.140 134 6/24/2024
4.0.139 140 6/20/2024
4.0.138 145 6/19/2024
4.0.137 133 6/18/2024
4.0.136 135 6/17/2024
4.0.135 134 6/14/2024
4.0.134 156 6/13/2024
4.0.133 121 6/3/2024
4.0.132 149 5/31/2024
4.0.131 141 5/30/2024
4.0.130 128 5/20/2024
4.0.129 115 5/17/2024
4.0.128 121 5/16/2024
4.0.127 164 5/9/2024
4.0.126 158 5/8/2024
4.0.125 159 5/7/2024
4.0.124 160 5/6/2024
4.0.123 113 5/3/2024
4.0.122 117 5/2/2024
4.0.121 139 5/1/2024
4.0.120 152 4/30/2024
4.0.119 132 4/29/2024
4.0.118 154 4/16/2024
4.0.117 138 4/15/2024
4.0.116 151 4/12/2024
4.0.115 175 4/11/2024
4.0.114 137 4/2/2024
4.0.113 143 4/1/2024
4.0.112 164 3/29/2024
4.0.111 154 3/19/2024
4.0.110 149 3/18/2024
4.0.109 145 3/15/2024
4.0.108 143 3/14/2024
4.0.107 139 3/12/2024
4.0.106 149 3/11/2024
4.0.105 139 3/8/2024
4.0.104 146 3/7/2024
4.0.103 150 3/6/2024
4.0.102 151 3/5/2024
4.0.101 161 3/4/2024
4.0.100 159 3/1/2024
4.0.99 140 2/29/2024
4.0.98 143 2/28/2024
4.0.97 157 2/27/2024
4.0.96 160 2/26/2024
4.0.95 134 2/23/2024
4.0.94 136 2/22/2024
4.0.93 161 2/21/2024
4.0.92 143 2/20/2024
4.0.91 148 2/19/2024
4.0.90 142 2/16/2024
4.0.89 155 2/15/2024
4.0.88 134 2/13/2024
4.0.87 145 2/12/2024
4.0.86 149 2/9/2024
4.0.85 153 2/8/2024
4.0.84 144 2/7/2024
4.0.83 134 2/6/2024
4.0.82 143 2/5/2024
4.0.81 139 2/2/2024
4.0.80 145 2/1/2024
4.0.79 140 1/31/2024
4.0.78 133 1/30/2024
4.0.77 135 1/26/2024
4.0.76 147 1/25/2024
4.0.75 128 1/24/2024
4.0.74 142 1/23/2024
4.0.73 134 1/22/2024
4.0.72 150 1/15/2024
4.0.71 144 1/12/2024
4.0.70 141 1/11/2024
4.0.69 157 12/26/2023
4.0.68 155 12/22/2023
4.0.67 145 12/20/2023
4.0.66 160 12/18/2023
4.0.65 175 12/15/2023
4.0.64 144 12/14/2023
4.0.63 159 12/13/2023
4.0.62 169 12/12/2023
4.0.61 205 11/27/2023
4.0.60 171 11/24/2023
4.0.59 178 11/22/2023
4.0.58 145 11/21/2023
4.0.57 165 11/20/2023
4.0.56 198 11/17/2023
4.0.55 165 11/16/2023
4.0.54 176 11/14/2023
4.0.53 161 11/14/2023
4.0.52 148 11/13/2023
4.0.51 167 11/10/2023
4.0.50 151 11/9/2023
4.0.49 150 11/8/2023
4.0.48 160 11/7/2023
4.0.47 193 11/6/2023
4.0.46 197 11/3/2023
4.0.45 188 11/2/2023
4.0.44 184 11/1/2023
4.0.43 171 10/31/2023
4.0.42 187 10/30/2023
4.0.41 166 10/27/2023
4.0.40 163 10/26/2023
4.0.39 180 10/13/2023
4.0.38 185 10/12/2023
4.0.37 171 10/5/2023
4.0.36 189 9/26/2023
4.0.35 176 9/21/2023
4.0.34 187 9/20/2023
4.0.33 197 9/19/2023
4.0.32 175 9/18/2023
4.0.31 183 9/15/2023
4.0.30 197 9/14/2023
4.0.29 183 9/13/2023
4.0.28 201 9/12/2023
4.0.27 188 9/11/2023
4.0.26 220 9/8/2023
4.0.25 210 9/7/2023
4.0.24 192 9/6/2023
4.0.23 213 9/5/2023
4.0.22 210 9/4/2023
4.0.21 204 9/1/2023
4.0.20 209 8/31/2023
4.0.19 199 8/30/2023
4.0.18 227 8/29/2023
4.0.17 198 8/28/2023
4.0.16 209 8/25/2023
4.0.15 175 8/24/2023
4.0.14 213 8/23/2023
4.0.13 245 8/21/2023
4.0.12 211 8/18/2023
4.0.11 210 8/17/2023
4.0.10 246 8/10/2023
4.0.9 222 8/9/2023
4.0.8 218 8/8/2023
4.0.7 205 8/8/2023
4.0.6 212 8/7/2023
4.0.5 236 8/3/2023
4.0.4 217 7/27/2023
4.0.3 228 7/26/2023
4.0.2 218 7/20/2023
4.0.1 211 7/17/2023
4.0.0 374 12/12/2022
3.1.3 595 6/10/2022
3.1.0 716 1/21/2022
3.0.15 558 1/11/2022
3.0.14 557 1/10/2022
3.0.13 549 6/21/2021
3.0.12 588 1/6/2021
3.0.11 595 11/23/2020
3.0.9 677 9/13/2020
3.0.8 647 6/8/2020
3.0.7 731 4/1/2020
3.0.6 669 3/25/2020
3.0.5 699 3/3/2020
3.0.4 731 1/29/2020
3.0.3 696 1/19/2020
3.0.2 814 12/31/2019
3.0.1 766 12/29/2019
3.0.0 697 12/23/2019
2.0.6 1,041 9/13/2018
2.0.5 1,129 7/26/2018
2.0.4 1,342 6/1/2018
2.0.3 1,293 6/1/2018
2.0.2 1,387 5/22/2018
2.0.1 1,529 2/5/2018
2.0.0 1,510 1/2/2018
1.0.10 1,290 9/29/2017
1.0.9 1,179 8/28/2017
1.0.8 1,241 8/11/2017
1.0.7 1,244 8/11/2017
1.0.6 1,285 8/11/2017
1.0.5 1,290 8/11/2017
1.0.4 1,239 8/11/2017
1.0.3 1,254 8/11/2017
1.0.2 1,244 8/11/2017