ModularPipelines.Node
2.13.47
Prefix Reserved
See the version list below for details.
dotnet add package ModularPipelines.Node --version 2.13.47
NuGet\Install-Package ModularPipelines.Node -Version 2.13.47
<PackageReference Include="ModularPipelines.Node" Version="2.13.47" />
paket add ModularPipelines.Node --version 2.13.47
#r "nuget: ModularPipelines.Node, 2.13.47"
// Install ModularPipelines.Node as a Cake Addin #addin nuget:?package=ModularPipelines.Node&version=2.13.47 // Install ModularPipelines.Node as a Cake Tool #tool nuget:?package=ModularPipelines.Node&version=2.13.47
ModularPipelines
Define your pipeline in .NET! Strong types, intellisense, parallelisation, and the entire .NET ecosystem at your fingertips.
Features
- Parallel execution
- Dependency management
- Familiar C# code
- Ability to debug pipelines
- Ability to run pipelines locally, even creating versions for setting up local development
- Strong typing, where different modules/steps can pass data to one another
- Dependency collision detection - Don't worry about accidentally making two modules dependent on each other
- Numerous helpers to do things like: Search files, check checksums, (un)zip folders, download files, install files, execute CLI commands, hash data, and more
- Easy to Skip or Ignore Failures for each individual module by passing in custom logic
- Hooks that can run before and/or after modules
- Pipeline requirements - Validate your requirements are met before executing your pipeline, such as a Linux operating system
- Easy to use File and Folder classes, that can search, read, update, delete and more
- Source controlled pipelines
- Build agent agnostic - Can easily move to a different build system without completely recreating your pipeline
- No need to learn new syntaxes such as YAML defined pipelines
- Strongly typed wrappers around command line tools
- Utilise existing .NET libraries
- Secret obfuscation
- Grouped logging, and the ability to extend sources by adding to the familiar
ILogger
- Run based on categories
- Easy to read exceptions
- Dynamic console progress reporting (if the console supports interactive mode)
- Pretty results table
Available Modules
Getting Started
If you want to see how to get started, or want to know more about ModularPipelines, read the Documentation here
Console Progress
Results
<img width="444" alt="image" src="https://github.com/thomhurst/ModularPipelines/assets/30480171/8963e891-2c29-4382-9a3e-6ced4daf4d4b">
Code Examples
Program.cs - Main method
await PipelineHostBuilder.Create()
.ConfigureAppConfiguration((context, builder) =>
{
builder.AddJsonFile("appsettings.json")
.AddUserSecrets<Program>()
.AddEnvironmentVariables();
})
.ConfigureServices((context, collection) =>
{
collection.Configure<NuGetSettings>(context.Configuration.GetSection("NuGet"));
collection.Configure<PublishSettings>(context.Configuration.GetSection("Publish"));
collection.AddSingleton<ISomeService1, SomeService1>();
collection.AddTransient<ISomeService2, SomeService2>();
})
.AddModule<FindNugetPackagesModule>()
.AddModule<UploadNugetPackagesModule>()
.ExecutePipelineAsync();
Custom Modules
public class FindNugetPackagesModule : Module<FileInfo>
{
protected override Task<List<File>?> ExecuteAsync(IPipelineContext context, CancellationToken cancellationToken)
{
return context.Git()
.RootDirectory
.GetFiles(path => path.Extension is ".nupkg")
.ToList()
.AsTask();
}
}
[DependsOn<FindNugetPackagesModule>]
public class UploadNugetPackagesModule : Module<FileInfo>
{
private readonly IOptions<NuGetSettings> _nugetSettings;
public UploadNugetPackagesModule(IOptions<NuGetSettings> nugetSettings)
{
_nugetSettings = nugetSettings;
}
protected override async Task<CommandResult?> ExecuteAsync(IPipelineContext context, CancellationToken cancellationToken)
{
var nugetFiles = await GetModule<FindNugetPackagesModule>();
return await context.NuGet()
.UploadPackages(new NuGetUploadOptions(nugetFiles.Value!.AsPaths(), new Uri("https://api.nuget.org/v3/index.json"))
{
ApiKey = _nugetSettings.Value.ApiKey
});
}
}
Breaking changes
While I will try to limit breaking changes, there may be some changes within minor versions. These will be noted on release notes.
Product | Versions 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 is compatible. 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. |
-
net6.0
- ModularPipelines (>= 2.13.47)
-
net7.0
- ModularPipelines (>= 2.13.47)
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 |
---|---|---|
2.42.87 | 78 | 10/28/2024 |
2.42.67 | 84 | 9/29/2024 |
2.42.59 | 87 | 9/19/2024 |
2.42.54 | 78 | 9/19/2024 |
2.42.53 | 78 | 9/19/2024 |
2.42.47 | 100 | 9/13/2024 |
2.42.45 | 91 | 9/12/2024 |
2.42.9 | 100 | 9/5/2024 |
2.42.8 | 89 | 9/4/2024 |
2.42.0 | 86 | 9/4/2024 |
2.41.4 | 98 | 9/3/2024 |
2.41.0 | 84 | 9/3/2024 |
2.40.18 | 95 | 9/2/2024 |
2.40.15 | 89 | 9/2/2024 |
2.40.10 | 86 | 9/2/2024 |
2.40.8 | 90 | 9/2/2024 |
2.40.4 | 95 | 8/29/2024 |
2.40.1 | 95 | 8/28/2024 |
2.38.36 | 101 | 8/26/2024 |
2.38.25 | 105 | 8/12/2024 |
2.38.2 | 71 | 7/27/2024 |
2.38.1 | 73 | 7/27/2024 |
2.37.9 | 101 | 7/14/2024 |
2.36.29 | 94 | 7/5/2024 |
2.36.23 | 102 | 6/30/2024 |
2.36.4 | 97 | 6/7/2024 |
2.35.0 | 101 | 6/2/2024 |
2.34.0 | 110 | 5/23/2024 |
2.33.0 | 101 | 5/20/2024 |
2.32.0 | 109 | 5/17/2024 |
2.31.3 | 124 | 4/15/2024 |
2.31.0 | 117 | 4/15/2024 |
2.30.9 | 105 | 3/27/2024 |
2.30.5 | 113 | 3/26/2024 |
2.30.3 | 115 | 3/26/2024 |
2.29.32 | 107 | 3/26/2024 |
2.29.22 | 134 | 3/8/2024 |
2.29.15 | 111 | 3/1/2024 |
2.29.11 | 126 | 2/27/2024 |
2.29.9 | 121 | 2/26/2024 |
2.29.0 | 112 | 2/25/2024 |
2.28.0 | 115 | 2/23/2024 |
2.27.12 | 113 | 2/15/2024 |
2.27.9 | 103 | 2/14/2024 |
2.27.3 | 129 | 2/8/2024 |
2.27.0 | 118 | 2/8/2024 |
2.26.8 | 110 | 2/4/2024 |
2.26.0 | 106 | 1/29/2024 |
2.25.0 | 105 | 1/28/2024 |
2.24.9 | 107 | 1/25/2024 |
2.24.4 | 97 | 1/25/2024 |
2.24.1 | 106 | 1/22/2024 |
2.22.0 | 115 | 1/18/2024 |
2.21.12 | 100 | 1/18/2024 |
2.21.9 | 104 | 1/18/2024 |
2.21.4 | 127 | 1/13/2024 |
2.21.0 | 103 | 1/12/2024 |
2.20.2 | 123 | 1/11/2024 |
2.19.2 | 130 | 12/27/2023 |
2.19.0 | 110 | 12/26/2023 |
2.18.8 | 97 | 12/26/2023 |
2.18.0 | 105 | 12/24/2023 |
2.17.25 | 126 | 12/22/2023 |
2.17.20 | 176 | 12/5/2023 |
2.17.0 | 128 | 11/24/2023 |
2.16.2 | 119 | 11/23/2023 |
2.16.0 | 125 | 11/23/2023 |
2.15.24 | 119 | 11/22/2023 |
2.15.21 | 109 | 11/22/2023 |
2.15.17 | 123 | 11/20/2023 |
2.15.3 | 121 | 11/9/2023 |
2.15.0 | 106 | 11/8/2023 |
2.14.9 | 138 | 11/6/2023 |
2.14.7 | 126 | 11/6/2023 |
2.14.1 | 111 | 11/6/2023 |
2.13.63 | 129 | 10/29/2023 |
2.13.47 | 123 | 10/20/2023 |
2.13.8 | 125 | 10/13/2023 |
2.13.5 | 143 | 10/13/2023 |
2.12.15 | 123 | 10/10/2023 |
2.12.11 | 123 | 10/10/2023 |
2.12.5 | 138 | 10/6/2023 |
2.12.1 | 117 | 10/4/2023 |
2.11.12 | 127 | 10/1/2023 |
2.11.11 | 139 | 9/30/2023 |
2.11.9 | 136 | 9/30/2023 |
2.11.4 | 126 | 9/30/2023 |
2.11.0 | 121 | 9/29/2023 |
2.10.6 | 150 | 9/29/2023 |
2.10.0 | 108 | 9/28/2023 |
2.9.0 | 133 | 9/28/2023 |
2.8.23 | 124 | 9/26/2023 |
2.8.12 | 143 | 9/24/2023 |
2.8.4 | 138 | 9/24/2023 |
2.8.0 | 125 | 9/24/2023 |
2.7.10 | 127 | 9/23/2023 |
2.7.6 | 120 | 9/22/2023 |
2.6.0 | 127 | 9/19/2023 |
2.5.11 | 138 | 9/16/2023 |
2.5.5 | 125 | 9/14/2023 |
2.5.2 | 131 | 9/14/2023 |
2.5.0 | 115 | 9/14/2023 |
2.4.0 | 120 | 9/12/2023 |
2.3.2 | 138 | 9/11/2023 |
2.3.0 | 164 | 9/11/2023 |
2.2.0 | 144 | 9/11/2023 |
2.0.8 | 143 | 9/7/2023 |
2.0.5 | 165 | 9/6/2023 |
2.0.0 | 143 | 9/6/2023 |
1.9.38 | 171 | 9/5/2023 |
1.9.36 | 123 | 9/5/2023 |
1.9.35 | 140 | 9/4/2023 |
1.9.31 | 123 | 9/4/2023 |
1.9.28 | 122 | 9/4/2023 |
1.9.22 | 141 | 9/3/2023 |
1.9.17 | 125 | 9/3/2023 |
1.9.15 | 134 | 9/3/2023 |
1.9.8 | 146 | 9/1/2023 |
1.9.6 | 139 | 9/1/2023 |
1.9.4 | 159 | 9/1/2023 |
1.9.1 | 152 | 8/31/2023 |
1.8.22 | 185 | 8/29/2023 |
1.8.18 | 130 | 8/29/2023 |
1.8.8 | 150 | 8/24/2023 |
1.8.6 | 150 | 8/24/2023 |
1.7.0 | 156 | 8/22/2023 |
1.6.3 | 151 | 8/17/2023 |
1.6.2 | 146 | 8/17/2023 |
1.6.1 | 148 | 8/17/2023 |
1.6.0 | 149 | 8/17/2023 |
1.5.5 | 160 | 8/15/2023 |
1.5.0 | 147 | 8/14/2023 |
1.4.34 | 150 | 8/11/2023 |
1.4.33 | 157 | 8/11/2023 |
1.4.31 | 177 | 8/11/2023 |
1.4.29 | 161 | 8/10/2023 |
1.4.22 | 184 | 8/10/2023 |
1.4.21 | 174 | 8/10/2023 |
1.4.20 | 172 | 8/10/2023 |
1.4.18 | 178 | 8/7/2023 |
1.4.17 | 144 | 8/7/2023 |
1.4.15 | 170 | 8/7/2023 |
1.4.14 | 196 | 8/2/2023 |
1.4.12 | 186 | 8/2/2023 |
1.4.11 | 181 | 7/19/2023 |
1.4.10 | 154 | 7/19/2023 |
1.4.9 | 166 | 7/18/2023 |
1.4.8 | 174 | 7/18/2023 |
1.4.6 | 179 | 7/13/2023 |
1.4.5 | 178 | 7/11/2023 |
1.4.4 | 152 | 7/10/2023 |
1.4.3 | 158 | 7/10/2023 |
1.4.2 | 167 | 7/7/2023 |
1.4.1 | 171 | 7/6/2023 |
1.4.0 | 153 | 7/6/2023 |
1.3.17 | 177 | 7/5/2023 |
1.3.15 | 197 | 7/5/2023 |
1.3.14 | 166 | 7/5/2023 |
1.3.13 | 159 | 7/5/2023 |
1.3.12 | 166 | 6/30/2023 |
1.3.11 | 179 | 6/30/2023 |
1.3.8 | 174 | 6/30/2023 |
1.3.7 | 157 | 6/30/2023 |
1.3.6 | 152 | 6/30/2023 |
1.3.5 | 152 | 6/30/2023 |
1.3.4 | 147 | 6/30/2023 |
1.3.3 | 153 | 6/29/2023 |
1.3.2 | 161 | 6/29/2023 |
1.3.1 | 148 | 6/29/2023 |
1.3.0 | 166 | 6/29/2023 |
1.2.0 | 188 | 6/29/2023 |
1.1.0 | 186 | 6/29/2023 |
1.0.1 | 153 | 6/29/2023 |
0.3.26 | 187 | 6/29/2023 |
0.2.0 | 155 | 6/29/2023 |
0.1.1-initial-2-0027 | 146 | 6/8/2023 |
0.1.1-initial-2-0025 | 146 | 6/8/2023 |
0.1.1-initial-2-0024 | 128 | 6/8/2023 |
0.1.0 | 167 | 6/28/2023 |
0.1.0-initial-2-19 | 155 | 6/8/2023 |
0.1.0-initial-2-16 | 140 | 6/8/2023 |
0.1.0-initial-2-0023 | 127 | 6/8/2023 |