ModularPipelines 2.11.0

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

// Install ModularPipelines as a Cake Tool
#tool nuget:?package=ModularPipelines&version=2.11.0                

ModularPipelines

Define your pipeline in .NET! Strong types, intellisense, parallelisation, and the entire .NET ecosystem at your fingertips.

nuget

Nuget GitHub Workflow Status (with event) GitHub last commit (branch) Codacy Badge CodeFactor License Codacy Badge codecov

Features

  • Parallel execution with easy waiting on dependencies if necessary
  • 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
  • Dynamic console progress reporting (if the console supports interactive mode)

Available Modules

Package Version
ModularPipelines nuget
ModularPipelines.AmazonWebServices nuget
ModularPipelines.Azure nuget
ModularPipelines.Azure.Pipelines nuget
ModularPipelines.Cmd nuget
ModularPipelines.Docker nuget
ModularPipelines.DotNet nuget
ModularPipelines.Email nuget
ModularPipelines.Ftp nuget
ModularPipelines.Git nuget
ModularPipelines.GitHub nuget
ModularPipelines.Helm nuget
ModularPipelines.Kubernetes nuget
ModularPipelines.MicrosoftTeams nuget
ModularPipelines.Node nuget
ModularPipelines.NuGet nuget
ModularPipelines.Slack nuget
ModularPipelines.TeamCity nuget
ModularPipelines.Terraform nuget

Getting Started

If you want to see how to get started, or want to know more about ModularPipelines, read the Wiki page here

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>
{
    private readonly ISomeService1 _someService1;

    public FindNugetPackagesModule(ISomeService1 someService1) 
    {
        _someService1 = someService1;
    }

    protected override async Task<List<File>?> ExecuteAsync(IPipelineContext context, CancellationToken cancellationToken)
    {
        await _someService1.DoSomething();

        return context.Git()
            .RootDirectory
            .GetFiles(path => path.Extension is ".nupkg")
            .ToList();
    }
}
[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(packagePaths.Value!.AsPaths(), new Uri("https://api.nuget.org/v3/index.json"))
            {
                ApiKey = _nugetSettings.Value.ApiKey,
                NoSymbols = true
            });
    }
}

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (24)

Showing the top 5 NuGet packages that depend on ModularPipelines:

Package Downloads
ModularPipelines.Azure.Pipelines

Helpers for interacting with Azure Pipeline agents.

ModularPipelines.AmazonWebServices

Helpers for interacting with Amazon Web Services.

ModularPipelines.DotNet

Helpers for interacting with dotnet CLI.

ModularPipelines.Git

Helpers for interacting with git.

ModularPipelines.Cmd

Helpers for interacting with the Windows cmd process.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.42.59 1,292 9/19/2024
2.42.54 391 9/19/2024
2.42.53 310 9/19/2024
2.42.47 1,268 9/13/2024
2.42.45 2,368 9/12/2024
2.42.9 1,687 9/5/2024
2.42.8 831 9/4/2024
2.42.0 477 9/4/2024
2.41.4 494 9/3/2024
2.41.0 616 9/3/2024
2.40.18 497 9/2/2024
2.40.15 400 9/2/2024
2.40.10 486 9/2/2024
2.40.8 419 9/2/2024
2.40.4 1,864 8/29/2024
2.40.1 518 8/28/2024
2.38.36 564 8/26/2024
2.38.25 1,214 8/12/2024
2.38.2 945 7/27/2024
2.38.1 316 7/27/2024
2.37.9 1,183 7/14/2024
2.37.1 70 7/14/2024
2.36.29 932 7/5/2024
2.36.23 827 6/30/2024
2.36.4 1,462 6/7/2024
2.35.0 697 6/2/2024
2.34.0 730 5/23/2024
2.33.0 921 5/20/2024
2.32.0 608 5/17/2024
2.31.3 1,435 4/15/2024
2.31.0 605 4/15/2024
2.30.9 823 3/27/2024
2.30.5 530 3/26/2024
2.30.3 584 3/26/2024
2.29.32 615 3/26/2024
2.29.22 1,003 3/8/2024
2.29.15 769 3/1/2024
2.29.11 751 2/27/2024
2.29.9 813 2/26/2024
2.29.0 713 2/25/2024
2.28.0 740 2/23/2024
2.27.12 869 2/15/2024
2.27.9 682 2/14/2024
2.27.3 910 2/8/2024
2.27.0 745 2/8/2024
2.26.8 1,008 2/4/2024
2.26.0 856 1/29/2024
2.25.0 759 1/28/2024
2.24.9 922 1/25/2024
2.24.4 747 1/25/2024
2.24.1 1,024 1/22/2024
2.22.0 912 1/18/2024
2.21.12 862 1/18/2024
2.21.9 809 1/18/2024
2.21.4 947 1/13/2024
2.21.0 804 1/12/2024
2.20.2 860 1/11/2024
2.19.2 1,016 12/27/2023
2.19.0 717 12/26/2023
2.18.8 549 12/26/2023
2.18.0 1,054 12/24/2023
2.17.25 627 12/22/2023
2.17.20 711 12/5/2023
2.17.0 737 11/24/2023
2.16.2 578 11/23/2023
2.16.0 530 11/23/2023
2.15.24 539 11/22/2023
2.15.21 533 11/22/2023
2.15.17 577 11/20/2023
2.15.3 586 11/9/2023
2.15.0 490 11/8/2023
2.14.9 539 11/6/2023
2.14.7 538 11/6/2023
2.14.1 500 11/6/2023
2.13.63 535 10/29/2023
2.13.47 618 10/20/2023
2.13.8 479 10/13/2023
2.13.5 486 10/13/2023
2.12.15 488 10/10/2023
2.12.11 551 10/10/2023
2.12.5 553 10/6/2023
2.12.1 526 10/4/2023
2.11.12 522 10/1/2023
2.11.11 489 9/30/2023
2.11.9 517 9/30/2023
2.11.4 532 9/30/2023
2.11.0 541 9/29/2023
2.10.6 592 9/29/2023
2.10.0 496 9/28/2023
2.9.0 511 9/28/2023
2.8.23 455 9/26/2023
2.8.12 492 9/24/2023
2.8.4 447 9/24/2023
2.8.0 465 9/24/2023
2.7.10 488 9/23/2023
2.7.6 454 9/22/2023
2.6.0 445 9/19/2023
2.5.11 474 9/16/2023
2.5.5 438 9/14/2023
2.5.2 459 9/14/2023
2.5.0 414 9/14/2023
2.4.0 468 9/12/2023
2.3.2 515 9/11/2023
2.3.0 478 9/11/2023
2.2.0 474 9/11/2023
2.0.8 533 9/7/2023
2.0.5 502 9/6/2023
2.0.0 545 9/6/2023
1.9.38 526 9/5/2023
1.9.36 504 9/5/2023
1.9.35 477 9/4/2023
1.9.31 466 9/4/2023
1.9.28 462 9/4/2023
1.9.22 480 9/3/2023
1.9.17 520 9/3/2023
1.9.15 455 9/3/2023
1.9.8 491 9/1/2023
1.9.6 485 9/1/2023
1.9.4 510 9/1/2023
1.9.1 491 8/31/2023
1.8.22 532 8/29/2023
1.8.18 518 8/29/2023
1.8.8 534 8/24/2023
1.8.6 494 8/24/2023
1.7.0 515 8/22/2023
1.6.3 584 8/17/2023
1.6.2 587 8/17/2023
1.6.1 617 8/17/2023
1.6.0 599 8/17/2023
1.5.5 585 8/15/2023
1.5.0 605 8/14/2023
1.4.34 606 8/11/2023
1.4.33 578 8/11/2023
1.4.31 588 8/11/2023
1.4.29 575 8/10/2023
1.4.22 604 8/10/2023
1.4.21 601 8/10/2023
1.4.20 593 8/10/2023
1.4.18 566 8/7/2023
1.4.17 580 8/7/2023
1.4.15 579 8/7/2023
1.4.14 636 8/2/2023
1.4.12 569 8/2/2023
1.4.11 581 7/19/2023
1.4.10 618 7/19/2023
1.4.9 594 7/18/2023
1.4.8 563 7/18/2023
1.4.6 568 7/13/2023
1.4.5 559 7/11/2023
1.4.4 546 7/10/2023
1.4.3 591 7/10/2023
1.4.2 595 7/7/2023
1.4.1 577 7/6/2023
1.4.0 585 7/6/2023
1.3.17 615 7/5/2023
1.3.15 635 7/5/2023
1.3.14 541 7/5/2023
1.3.13 597 7/5/2023
1.3.12 608 6/30/2023
1.3.11 514 6/30/2023
1.3.8 547 6/30/2023
1.3.7 535 6/30/2023
1.3.6 566 6/30/2023
1.3.5 520 6/30/2023
1.3.4 554 6/30/2023
1.3.3 505 6/29/2023
1.3.2 566 6/29/2023
1.3.1 542 6/29/2023
1.3.0 541 6/29/2023
1.2.0 568 6/29/2023
1.1.0 551 6/29/2023
1.0.1 559 6/29/2023
0.3.26 545 6/29/2023
0.2.0 542 6/29/2023
0.1.1-initial-2-0027 456 6/8/2023
0.1.1-initial-2-0025 482 6/8/2023
0.1.1-initial-2-0024 453 6/8/2023
0.1.0 585 6/28/2023
0.1.0-initial-2-19 485 6/8/2023
0.1.0-initial-2-17 354 6/8/2023
0.1.0-initial-2-16 423 6/8/2023
0.1.0-initial-2-0023 427 6/8/2023
0.0.1-alpha03 232 5/29/2023
0.0.1-alpha02 243 5/28/2023
0.0.1-alpha01 225 5/28/2023