TaskMaster 4.0.162

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

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

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. 
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
4.0.164 50 9/10/2024
4.0.163 65 9/3/2024
4.0.162 62 8/30/2024
4.0.161 70 8/28/2024
4.0.160 71 8/27/2024
4.0.159 69 8/26/2024
4.0.158 94 8/23/2024
4.0.157 90 8/22/2024
4.0.156 96 8/21/2024
4.0.155 95 8/20/2024
4.0.154 86 8/16/2024
4.0.153 97 8/15/2024
4.0.152 62 8/6/2024
4.0.151 32 8/5/2024
4.0.150 31 8/2/2024
4.0.149 44 8/1/2024
4.0.148 52 7/26/2024
4.0.147 58 7/25/2024
4.0.146 70 7/12/2024
4.0.145 65 7/11/2024
4.0.144 80 7/2/2024
4.0.143 72 6/28/2024
4.0.142 70 6/27/2024
4.0.141 70 6/26/2024
4.0.140 78 6/24/2024
4.0.139 85 6/20/2024
4.0.138 80 6/19/2024
4.0.137 71 6/18/2024
4.0.136 77 6/17/2024
4.0.135 74 6/14/2024
4.0.134 76 6/13/2024
4.0.133 67 6/3/2024
4.0.132 86 5/31/2024
4.0.131 85 5/30/2024
4.0.130 71 5/20/2024
4.0.129 59 5/17/2024
4.0.128 58 5/16/2024
4.0.127 99 5/9/2024
4.0.126 91 5/8/2024
4.0.125 102 5/7/2024
4.0.124 101 5/6/2024
4.0.123 57 5/3/2024
4.0.122 63 5/2/2024
4.0.121 80 5/1/2024
4.0.120 86 4/30/2024
4.0.119 75 4/29/2024
4.0.118 95 4/16/2024
4.0.117 81 4/15/2024
4.0.116 90 4/12/2024
4.0.115 99 4/11/2024
4.0.114 83 4/2/2024
4.0.113 87 4/1/2024
4.0.112 95 3/29/2024
4.0.111 99 3/19/2024
4.0.110 86 3/18/2024
4.0.109 88 3/15/2024
4.0.108 84 3/14/2024
4.0.107 86 3/12/2024
4.0.106 77 3/11/2024
4.0.105 86 3/8/2024
4.0.104 99 3/7/2024
4.0.103 93 3/6/2024
4.0.102 93 3/5/2024
4.0.101 104 3/4/2024
4.0.100 104 3/1/2024
4.0.99 89 2/29/2024
4.0.98 88 2/28/2024
4.0.97 96 2/27/2024
4.0.96 82 2/26/2024
4.0.95 82 2/23/2024
4.0.94 76 2/22/2024
4.0.93 105 2/21/2024
4.0.92 88 2/20/2024
4.0.91 92 2/19/2024
4.0.90 79 2/16/2024
4.0.89 101 2/15/2024
4.0.88 81 2/13/2024
4.0.87 91 2/12/2024
4.0.86 90 2/9/2024
4.0.85 94 2/8/2024
4.0.84 93 2/7/2024
4.0.83 82 2/6/2024
4.0.82 87 2/5/2024
4.0.81 91 2/2/2024
4.0.80 86 2/1/2024
4.0.79 89 1/31/2024
4.0.78 86 1/30/2024
4.0.77 85 1/26/2024
4.0.76 77 1/25/2024
4.0.75 83 1/24/2024
4.0.74 86 1/23/2024
4.0.73 85 1/22/2024
4.0.72 102 1/15/2024
4.0.71 93 1/12/2024
4.0.70 86 1/11/2024
4.0.69 106 12/26/2023
4.0.68 100 12/22/2023
4.0.67 106 12/20/2023
4.0.66 119 12/18/2023
4.0.65 116 12/15/2023
4.0.64 102 12/14/2023
4.0.63 103 12/13/2023
4.0.62 103 12/12/2023
4.0.61 171 11/27/2023
4.0.60 135 11/24/2023
4.0.59 138 11/22/2023
4.0.58 121 11/21/2023
4.0.57 125 11/20/2023
4.0.56 128 11/17/2023
4.0.55 121 11/16/2023
4.0.54 138 11/14/2023
4.0.53 126 11/14/2023
4.0.52 106 11/13/2023
4.0.51 122 11/10/2023
4.0.50 117 11/9/2023
4.0.49 116 11/8/2023
4.0.48 125 11/7/2023
4.0.47 146 11/6/2023
4.0.46 157 11/3/2023
4.0.45 149 11/2/2023
4.0.44 143 11/1/2023
4.0.43 122 10/31/2023
4.0.42 135 10/30/2023
4.0.41 141 10/27/2023
4.0.40 125 10/26/2023
4.0.39 133 10/13/2023
4.0.38 140 10/12/2023
4.0.37 130 10/5/2023
4.0.36 142 9/26/2023
4.0.35 134 9/21/2023
4.0.34 145 9/20/2023
4.0.33 142 9/19/2023
4.0.32 118 9/18/2023
4.0.31 144 9/15/2023
4.0.30 158 9/14/2023
4.0.29 141 9/13/2023
4.0.28 148 9/12/2023
4.0.27 158 9/11/2023
4.0.26 170 9/8/2023
4.0.25 161 9/7/2023
4.0.24 144 9/6/2023
4.0.23 160 9/5/2023
4.0.22 160 9/4/2023
4.0.21 154 9/1/2023
4.0.20 156 8/31/2023
4.0.19 153 8/30/2023
4.0.18 165 8/29/2023
4.0.17 147 8/28/2023
4.0.16 158 8/25/2023
4.0.15 129 8/24/2023
4.0.14 166 8/23/2023
4.0.13 191 8/21/2023
4.0.12 159 8/18/2023
4.0.11 159 8/17/2023
4.0.10 177 8/10/2023
4.0.9 175 8/9/2023
4.0.8 168 8/8/2023
4.0.7 159 8/8/2023
4.0.6 163 8/7/2023
4.0.5 188 8/3/2023
4.0.4 169 7/27/2023
4.0.3 170 7/26/2023
4.0.2 161 7/20/2023
4.0.1 167 7/17/2023
4.0.0 319 12/12/2022
3.1.3 530 6/10/2022
3.1.0 640 1/21/2022
3.0.15 475 1/11/2022
3.0.14 478 1/10/2022
3.0.13 472 6/21/2021
3.0.12 500 1/6/2021
3.0.11 510 11/23/2020
3.0.9 586 9/13/2020
3.0.8 553 6/8/2020
3.0.7 628 4/1/2020
3.0.6 574 3/25/2020
3.0.5 597 3/3/2020
3.0.4 633 1/29/2020
3.0.3 599 1/19/2020
3.0.2 694 12/31/2019
3.0.1 671 12/29/2019
3.0.0 610 12/23/2019
2.0.6 902 9/13/2018
2.0.5 956 7/26/2018
2.0.4 1,063 6/1/2018
2.0.3 1,013 6/1/2018
2.0.2 1,112 5/22/2018
2.0.1 1,241 2/5/2018
2.0.0 1,224 1/2/2018
1.0.10 1,094 9/29/2017
1.0.9 994 8/28/2017
1.0.8 1,033 8/11/2017
1.0.7 1,047 8/11/2017
1.0.6 1,081 8/11/2017
1.0.5 1,079 8/11/2017
1.0.4 1,036 8/11/2017
1.0.3 1,052 8/11/2017
1.0.2 1,039 8/11/2017