![]() |
VOOZH | about |
Requires NuGet 5.9 or higher.
dotnet add package Automatron.Tasks --version 1.0.1
NuGet\Install-Package Automatron.Tasks -Version 1.0.1
<PackageReference Include="Automatron.Tasks" Version="1.0.1" />
<PackageVersion Include="Automatron.Tasks" Version="1.0.1" />Directory.Packages.props
<PackageReference Include="Automatron.Tasks" />Project file
paket add Automatron.Tasks --version 1.0.1
#r "nuget: Automatron.Tasks, 1.0.1"
#:package Automatron.Tasks@1.0.1
#addin nuget:?package=Automatron.Tasks&version=1.0.1Install as a Cake Addin
#tool nuget:?package=Automatron.Tasks&version=1.0.1Install as a Cake Tool
👁 NuGet version (Automatron.Tasks)
👁 Build status
The Automatron.Tasks .NET library is a task automation system that enables you to write task based workflows as .Net methods
Tasks can be are defined as void/async methods on one or many classes
Inheritance and interfaces are supported as well
Sample and add a reference to Automatron.Tasks.Program.cs with:using Automatron.Tasks;
using Automatron.Tasks.Annotations;
return await new TaskRunner().RunAsync(args);
namespace Sample;
public class Build
{
[Task(Default = true)]
public void Default()
{
Console.WriteLine("Hello, world!");
}
[Task]
public void Build()
{
Console.WriteLine("Building my app");
}
}
dotnet run or F5 in Visual Studio:Tasks can be run via cmd arguments dotnet run -- Build
Dependencies are expression via the attributes
using Automatron.Tasks;
using Automatron.Tasks.Annotations;
return await new TaskRunner().RunAsync(args);
namespace Sample;
public class Build
{
[Task(Default = true)]
[DependentOn(nameof(Build))]
public void Default()
{
Console.WriteLine("Hello, world!");
}
[Task]
public void Build()
{
Console.WriteLine("Building my app");
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.1 | 546 | 4/14/2025 |
| 1.0.1-alpha.0.1 | 258 | 4/14/2025 |
| 1.0.0 | 490 | 4/13/2025 |
| 0.0.0-alpha-11.7 | 158 | 4/11/2025 |
| 0.0.0-alpha-11.6 | 163 | 11/2/2024 |
| 0.0.0-alpha-11.5 | 179 | 10/12/2024 |
| 0.0.0-alpha-11.4 | 133 | 10/12/2024 |
| 0.0.0-alpha-11.3 | 132 | 10/6/2024 |
| 0.0.0-alpha-11.2 | 144 | 10/1/2024 |
| 0.0.0-alpha-11 | 500 | 6/2/2023 |
| 0.0.0-alpha.10 | 256 | 1/6/2023 |
| 0.0.0-alpha.9 | 232 | 1/2/2023 |
| 0.0.0-alpha.8 | 249 | 11/23/2022 |
| 0.0.0-alpha.7 | 237 | 11/21/2022 |
| 0.0.0-alpha.6 | 266 | 11/16/2022 |
| 0.0.0-alpha.4 | 278 | 11/15/2022 |
| 0.0.0-alpha.3 | 243 | 11/15/2022 |
| 0.0.0-alpha.2 | 265 | 11/11/2022 |
| 0.0.0-alpha.1 | 276 | 11/10/2022 |