TaskMaster 4.0.42

There is a newer version of this package available.
See the version list below for details.
dotnet add package TaskMaster --version 4.0.42
                    
NuGet\Install-Package TaskMaster -Version 4.0.42
                    
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.42" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TaskMaster" Version="4.0.42" />
                    
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.42
                    
#r "nuget: TaskMaster, 4.0.42"
                    
#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=4.0.42
                    
Install as a Cake Addin
#tool nuget:?package=TaskMaster&version=4.0.42
                    
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.2 95 6/27/2025
5.0.1 112 6/27/2025
5.0.0 162 11/24/2024
4.0.187 104 11/15/2024
4.0.186 111 11/14/2024
4.0.185 117 11/13/2024
4.0.184 119 11/12/2024
4.0.183 123 11/11/2024
4.0.182 115 11/7/2024
4.0.181 116 11/6/2024
4.0.180 110 11/5/2024
4.0.179 107 11/4/2024
4.0.178 111 11/1/2024
4.0.177 111 10/31/2024
4.0.176 114 10/29/2024
4.0.175 115 10/29/2024
4.0.174 102 10/15/2024
4.0.173 114 10/14/2024
4.0.172 121 10/11/2024
4.0.171 119 10/10/2024
4.0.170 113 10/8/2024
4.0.169 118 10/2/2024
4.0.168 111 10/1/2024
4.0.167 110 9/30/2024
4.0.166 123 9/24/2024
4.0.165 124 9/17/2024
4.0.164 143 9/10/2024
4.0.163 127 9/3/2024
4.0.162 122 8/30/2024
4.0.161 124 8/28/2024
4.0.160 131 8/27/2024
4.0.159 138 8/26/2024
4.0.158 147 8/23/2024
4.0.157 140 8/22/2024
4.0.156 146 8/21/2024
4.0.155 148 8/20/2024
4.0.154 135 8/16/2024
4.0.153 152 8/15/2024
4.0.152 120 8/6/2024
4.0.151 89 8/5/2024
4.0.150 91 8/2/2024
4.0.149 107 8/1/2024
4.0.148 108 7/26/2024
4.0.147 108 7/25/2024
4.0.146 123 7/12/2024
4.0.145 117 7/11/2024
4.0.144 126 7/2/2024
4.0.143 158 6/28/2024
4.0.142 130 6/27/2024
4.0.141 125 6/26/2024
4.0.140 128 6/24/2024
4.0.139 134 6/20/2024
4.0.138 138 6/19/2024
4.0.137 126 6/18/2024
4.0.136 130 6/17/2024
4.0.135 126 6/14/2024
4.0.134 149 6/13/2024
4.0.133 116 6/3/2024
4.0.132 140 5/31/2024
4.0.131 136 5/30/2024
4.0.130 121 5/20/2024
4.0.129 109 5/17/2024
4.0.128 114 5/16/2024
4.0.127 160 5/9/2024
4.0.126 151 5/8/2024
4.0.125 152 5/7/2024
4.0.124 154 5/6/2024
4.0.123 107 5/3/2024
4.0.122 112 5/2/2024
4.0.121 133 5/1/2024
4.0.120 144 4/30/2024
4.0.119 125 4/29/2024
4.0.118 148 4/16/2024
4.0.117 134 4/15/2024
4.0.116 145 4/12/2024
4.0.115 167 4/11/2024
4.0.114 132 4/2/2024
4.0.113 137 4/1/2024
4.0.112 158 3/29/2024
4.0.111 148 3/19/2024
4.0.110 142 3/18/2024
4.0.109 137 3/15/2024
4.0.108 136 3/14/2024
4.0.107 133 3/12/2024
4.0.106 145 3/11/2024
4.0.105 132 3/8/2024
4.0.104 142 3/7/2024
4.0.103 143 3/6/2024
4.0.102 142 3/5/2024
4.0.101 156 3/4/2024
4.0.100 155 3/1/2024
4.0.99 135 2/29/2024
4.0.98 139 2/28/2024
4.0.97 152 2/27/2024
4.0.96 154 2/26/2024
4.0.95 129 2/23/2024
4.0.94 130 2/22/2024
4.0.93 156 2/21/2024
4.0.92 139 2/20/2024
4.0.91 141 2/19/2024
4.0.90 137 2/16/2024
4.0.89 150 2/15/2024
4.0.88 129 2/13/2024
4.0.87 138 2/12/2024
4.0.86 144 2/9/2024
4.0.85 145 2/8/2024
4.0.84 139 2/7/2024
4.0.83 130 2/6/2024
4.0.82 138 2/5/2024
4.0.81 134 2/2/2024
4.0.80 137 2/1/2024
4.0.79 133 1/31/2024
4.0.78 129 1/30/2024
4.0.77 129 1/26/2024
4.0.76 141 1/25/2024
4.0.75 122 1/24/2024
4.0.74 138 1/23/2024
4.0.73 130 1/22/2024
4.0.72 143 1/15/2024
4.0.71 139 1/12/2024
4.0.70 135 1/11/2024
4.0.69 150 12/26/2023
4.0.68 148 12/22/2023
4.0.67 140 12/20/2023
4.0.66 152 12/18/2023
4.0.65 167 12/15/2023
4.0.64 139 12/14/2023
4.0.63 155 12/13/2023
4.0.62 162 12/12/2023
4.0.61 203 11/27/2023
4.0.60 168 11/24/2023
4.0.59 177 11/22/2023
4.0.58 144 11/21/2023
4.0.57 162 11/20/2023
4.0.56 194 11/17/2023
4.0.55 160 11/16/2023
4.0.54 174 11/14/2023
4.0.53 161 11/14/2023
4.0.52 146 11/13/2023
4.0.51 165 11/10/2023
4.0.50 151 11/9/2023
4.0.49 150 11/8/2023
4.0.48 158 11/7/2023
4.0.47 191 11/6/2023
4.0.46 197 11/3/2023
4.0.45 185 11/2/2023
4.0.44 182 11/1/2023
4.0.43 169 10/31/2023
4.0.42 186 10/30/2023
4.0.41 164 10/27/2023
4.0.40 162 10/26/2023
4.0.39 178 10/13/2023
4.0.38 185 10/12/2023
4.0.37 171 10/5/2023
4.0.36 186 9/26/2023
4.0.35 174 9/21/2023
4.0.34 185 9/20/2023
4.0.33 195 9/19/2023
4.0.32 173 9/18/2023
4.0.31 181 9/15/2023
4.0.30 196 9/14/2023
4.0.29 183 9/13/2023
4.0.28 196 9/12/2023
4.0.27 188 9/11/2023
4.0.26 215 9/8/2023
4.0.25 209 9/7/2023
4.0.24 188 9/6/2023
4.0.23 208 9/5/2023
4.0.22 205 9/4/2023
4.0.21 200 9/1/2023
4.0.20 206 8/31/2023
4.0.19 197 8/30/2023
4.0.18 223 8/29/2023
4.0.17 195 8/28/2023
4.0.16 206 8/25/2023
4.0.15 171 8/24/2023
4.0.14 212 8/23/2023
4.0.13 244 8/21/2023
4.0.12 209 8/18/2023
4.0.11 207 8/17/2023
4.0.10 243 8/10/2023
4.0.9 219 8/9/2023
4.0.8 215 8/8/2023
4.0.7 204 8/8/2023
4.0.6 211 8/7/2023
4.0.5 233 8/3/2023
4.0.4 214 7/27/2023
4.0.3 226 7/26/2023
4.0.2 216 7/20/2023
4.0.1 206 7/17/2023
4.0.0 372 12/12/2022
3.1.3 592 6/10/2022
3.1.0 713 1/21/2022
3.0.15 552 1/11/2022
3.0.14 553 1/10/2022
3.0.13 545 6/21/2021
3.0.12 583 1/6/2021
3.0.11 592 11/23/2020
3.0.9 673 9/13/2020
3.0.8 643 6/8/2020
3.0.7 723 4/1/2020
3.0.6 664 3/25/2020
3.0.5 692 3/3/2020
3.0.4 727 1/29/2020
3.0.3 690 1/19/2020
3.0.2 809 12/31/2019
3.0.1 758 12/29/2019
3.0.0 691 12/23/2019
2.0.6 1,036 9/13/2018
2.0.5 1,121 7/26/2018
2.0.4 1,327 6/1/2018
2.0.3 1,279 6/1/2018
2.0.2 1,370 5/22/2018
2.0.1 1,514 2/5/2018
2.0.0 1,491 1/2/2018
1.0.10 1,281 9/29/2017
1.0.9 1,168 8/28/2017
1.0.8 1,231 8/11/2017
1.0.7 1,234 8/11/2017
1.0.6 1,274 8/11/2017
1.0.5 1,280 8/11/2017
1.0.4 1,226 8/11/2017
1.0.3 1,245 8/11/2017
1.0.2 1,233 8/11/2017