TaskMaster 4.0.178

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

// Install TaskMaster as a Cake Tool
#tool nuget:?package=TaskMaster&version=4.0.178                

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. 
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 103 11/24/2024
4.0.187 81 11/15/2024
4.0.186 87 11/14/2024
4.0.185 88 11/13/2024
4.0.184 93 11/12/2024
4.0.183 92 11/11/2024
4.0.182 85 11/7/2024
4.0.181 88 11/6/2024
4.0.180 85 11/5/2024
4.0.179 79 11/4/2024
4.0.178 84 11/1/2024
4.0.177 83 10/31/2024
4.0.176 82 10/29/2024
4.0.175 89 10/29/2024
4.0.174 75 10/15/2024
4.0.173 81 10/14/2024
4.0.172 93 10/11/2024
4.0.171 93 10/10/2024
4.0.170 88 10/8/2024
4.0.169 90 10/2/2024
4.0.168 87 10/1/2024
4.0.167 83 9/30/2024
4.0.166 96 9/24/2024
4.0.165 98 9/17/2024
4.0.164 120 9/10/2024
4.0.163 105 9/3/2024
4.0.162 100 8/30/2024
4.0.161 99 8/28/2024
4.0.160 106 8/27/2024
4.0.159 103 8/26/2024
4.0.158 124 8/23/2024
4.0.157 117 8/22/2024
4.0.156 125 8/21/2024
4.0.155 126 8/20/2024
4.0.154 113 8/16/2024
4.0.153 131 8/15/2024
4.0.152 94 8/6/2024
4.0.151 63 8/5/2024
4.0.150 66 8/2/2024
4.0.149 78 8/1/2024
4.0.148 81 7/26/2024
4.0.147 87 7/25/2024
4.0.146 97 7/12/2024
4.0.145 92 7/11/2024
4.0.144 102 7/2/2024
4.0.143 130 6/28/2024
4.0.142 101 6/27/2024
4.0.141 97 6/26/2024
4.0.140 106 6/24/2024
4.0.139 114 6/20/2024
4.0.138 108 6/19/2024
4.0.137 102 6/18/2024
4.0.136 108 6/17/2024
4.0.135 102 6/14/2024
4.0.134 128 6/13/2024
4.0.133 94 6/3/2024
4.0.132 116 5/31/2024
4.0.131 112 5/30/2024
4.0.130 96 5/20/2024
4.0.129 82 5/17/2024
4.0.128 84 5/16/2024
4.0.127 130 5/9/2024
4.0.126 121 5/8/2024
4.0.125 131 5/7/2024
4.0.124 127 5/6/2024
4.0.123 83 5/3/2024
4.0.122 88 5/2/2024
4.0.121 106 5/1/2024
4.0.120 117 4/30/2024
4.0.119 103 4/29/2024
4.0.118 121 4/16/2024
4.0.117 112 4/15/2024
4.0.116 121 4/12/2024
4.0.115 143 4/11/2024
4.0.114 108 4/2/2024
4.0.113 112 4/1/2024
4.0.112 122 3/29/2024
4.0.111 124 3/19/2024
4.0.110 113 3/18/2024
4.0.109 112 3/15/2024
4.0.108 109 3/14/2024
4.0.107 106 3/12/2024
4.0.106 120 3/11/2024
4.0.105 110 3/8/2024
4.0.104 121 3/7/2024
4.0.103 117 3/6/2024
4.0.102 119 3/5/2024
4.0.101 130 3/4/2024
4.0.100 133 3/1/2024
4.0.99 110 2/29/2024
4.0.98 114 2/28/2024
4.0.97 124 2/27/2024
4.0.96 127 2/26/2024
4.0.95 106 2/23/2024
4.0.94 103 2/22/2024
4.0.93 126 2/21/2024
4.0.92 109 2/20/2024
4.0.91 113 2/19/2024
4.0.90 116 2/16/2024
4.0.89 127 2/15/2024
4.0.88 107 2/13/2024
4.0.87 117 2/12/2024
4.0.86 124 2/9/2024
4.0.85 121 2/8/2024
4.0.84 117 2/7/2024
4.0.83 107 2/6/2024
4.0.82 116 2/5/2024
4.0.81 113 2/2/2024
4.0.80 111 2/1/2024
4.0.79 110 1/31/2024
4.0.78 109 1/30/2024
4.0.77 107 1/26/2024
4.0.76 116 1/25/2024
4.0.75 96 1/24/2024
4.0.74 113 1/23/2024
4.0.73 108 1/22/2024
4.0.72 123 1/15/2024
4.0.71 119 1/12/2024
4.0.70 114 1/11/2024
4.0.69 131 12/26/2023
4.0.68 128 12/22/2023
4.0.67 118 12/20/2023
4.0.66 131 12/18/2023
4.0.65 138 12/15/2023
4.0.64 118 12/14/2023
4.0.63 134 12/13/2023
4.0.62 140 12/12/2023
4.0.61 194 11/27/2023
4.0.60 160 11/24/2023
4.0.59 167 11/22/2023
4.0.58 133 11/21/2023
4.0.57 153 11/20/2023
4.0.56 185 11/17/2023
4.0.55 149 11/16/2023
4.0.54 164 11/14/2023
4.0.53 149 11/14/2023
4.0.52 135 11/13/2023
4.0.51 150 11/10/2023
4.0.50 142 11/9/2023
4.0.49 140 11/8/2023
4.0.48 148 11/7/2023
4.0.47 175 11/6/2023
4.0.46 182 11/3/2023
4.0.45 175 11/2/2023
4.0.44 170 11/1/2023
4.0.43 154 10/31/2023
4.0.42 172 10/30/2023
4.0.41 152 10/27/2023
4.0.40 149 10/26/2023
4.0.39 159 10/13/2023
4.0.38 165 10/12/2023
4.0.37 156 10/5/2023
4.0.36 171 9/26/2023
4.0.35 159 9/21/2023
4.0.34 168 9/20/2023
4.0.33 174 9/19/2023
4.0.32 143 9/18/2023
4.0.31 169 9/15/2023
4.0.30 181 9/14/2023
4.0.29 167 9/13/2023
4.0.28 175 9/12/2023
4.0.27 172 9/11/2023
4.0.26 195 9/8/2023
4.0.25 192 9/7/2023
4.0.24 170 9/6/2023
4.0.23 189 9/5/2023
4.0.22 185 9/4/2023
4.0.21 181 9/1/2023
4.0.20 182 8/31/2023
4.0.19 178 8/30/2023
4.0.18 206 8/29/2023
4.0.17 176 8/28/2023
4.0.16 183 8/25/2023
4.0.15 154 8/24/2023
4.0.14 193 8/23/2023
4.0.13 225 8/21/2023
4.0.12 191 8/18/2023
4.0.11 186 8/17/2023
4.0.10 206 8/10/2023
4.0.9 200 8/9/2023
4.0.8 195 8/8/2023
4.0.7 185 8/8/2023
4.0.6 188 8/7/2023
4.0.5 215 8/3/2023
4.0.4 195 7/27/2023
4.0.3 199 7/26/2023
4.0.2 194 7/20/2023
4.0.1 179 7/17/2023
4.0.0 343 12/12/2022
3.1.3 555 6/10/2022
3.1.0 669 1/21/2022
3.0.15 504 1/11/2022
3.0.14 506 1/10/2022
3.0.13 500 6/21/2021
3.0.12 529 1/6/2021
3.0.11 537 11/23/2020
3.0.9 617 9/13/2020
3.0.8 585 6/8/2020
3.0.7 660 4/1/2020
3.0.6 600 3/25/2020
3.0.5 627 3/3/2020
3.0.4 663 1/29/2020
3.0.3 627 1/19/2020
3.0.2 746 12/31/2019
3.0.1 696 12/29/2019
3.0.0 623 12/23/2019
2.0.6 943 9/13/2018
2.0.5 973 7/26/2018
2.0.4 1,104 6/1/2018
2.0.3 1,051 6/1/2018
2.0.2 1,143 5/22/2018
2.0.1 1,275 2/5/2018
2.0.0 1,254 1/2/2018
1.0.10 1,123 9/29/2017
1.0.9 1,010 8/28/2017
1.0.8 1,073 8/11/2017
1.0.7 1,077 8/11/2017
1.0.6 1,118 8/11/2017
1.0.5 1,120 8/11/2017
1.0.4 1,067 8/11/2017
1.0.3 1,086 8/11/2017
1.0.2 1,072 8/11/2017