ModularPipelines 2.3.2

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package ModularPipelines --version 2.3.2
                    
NuGet\Install-Package ModularPipelines -Version 2.3.2
                    
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.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularPipelines" Version="2.3.2" />
                    
Directory.Packages.props
<PackageReference Include="ModularPipelines" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ModularPipelines --version 2.3.2
                    
#r "nuget: ModularPipelines, 2.3.2"
                    
#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.
#addin nuget:?package=ModularPipelines&version=2.3.2
                    
Install as a Cake Addin
#tool nuget:?package=ModularPipelines&version=2.3.2
                    
Install as a Cake Tool

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 License Codacy Badge

Available Modules

Package Version
ModularPipelines 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.Helm nuget
ModularPipelines.Kubernetes nuget
ModularPipelines.MicrosoftTeams nuget
ModularPipelines.Node nuget
ModularPipelines.NuGet nuget
ModularPipelines.Slack 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"));
    })
    .AddModule<FindNugetPackagesModule>()
    .AddModule<UploadNugetPackagesModule>()
    .ExecutePipelineAsync();

Custom Modules

public class FindNugetPackagesModule : Module<FileInfo>
{
    protected override async Task<List<File>?> ExecuteAsync(IModuleContext context, CancellationToken cancellationToken)
    {
        await Task.Yield();

        return context.FileSystem.GetFiles(context.Environment.GitRootDirectory!.Path,
            SearchOption.AllDirectories,
            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(IModuleContext 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
            });
    }
}
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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (25)

Showing the top 5 NuGet packages that depend on ModularPipelines:

Package Downloads
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.Azure.Pipelines

Helpers for interacting with Azure Pipeline agents.

ModularPipelines.GitHub

Helpers for interacting with GitHub Actions build agents.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.44.45 2,392 5/25/2025
2.44.44 1,023 5/19/2025
2.43.0 11,484 2/24/2025
2.42.319 1,704 2/18/2025
2.42.246 6,991 1/19/2025
2.42.228 1,986 1/10/2025
2.42.226 427 1/9/2025
2.42.140 3,840 12/1/2024
2.42.134 697 11/30/2024
2.42.132 450 11/30/2024
2.42.115 12,688 11/17/2024
2.42.87 10,198 10/28/2024
2.42.67 4,421 9/29/2024
2.42.59 1,787 9/19/2024
2.42.54 648 9/19/2024
2.42.53 523 9/19/2024
2.42.47 1,507 9/13/2024
2.42.45 7,433 9/12/2024
2.42.9 2,495 9/5/2024
2.42.8 1,010 9/4/2024
2.42.0 643 9/4/2024
2.41.4 727 9/3/2024
2.41.0 851 9/3/2024
2.40.18 724 9/2/2024
2.40.15 618 9/2/2024
2.40.10 712 9/2/2024
2.40.8 618 9/2/2024
2.40.4 2,088 8/29/2024
2.40.1 739 8/28/2024
2.38.36 804 8/26/2024
2.38.25 1,456 8/12/2024
2.38.2 1,200 7/27/2024
2.38.1 539 7/27/2024
2.37.9 3,601 7/14/2024
2.37.1 108 7/14/2024
2.36.29 1,147 7/5/2024
2.36.23 1,025 6/30/2024
2.36.4 1,734 6/7/2024
2.35.0 946 6/2/2024
2.34.0 967 5/23/2024
2.33.0 1,089 5/20/2024
2.32.0 780 5/17/2024
2.31.3 1,911 4/15/2024
2.31.0 853 4/15/2024
2.30.9 1,022 3/27/2024
2.30.5 594 3/26/2024
2.30.3 649 3/26/2024
2.29.32 764 3/26/2024
2.29.22 1,244 3/8/2024
2.29.15 1,004 3/1/2024
2.29.11 967 2/27/2024
2.29.9 1,041 2/26/2024
2.29.0 911 2/25/2024
2.28.0 885 2/23/2024
2.27.12 1,069 2/15/2024
2.27.9 744 2/14/2024
2.27.3 1,123 2/8/2024
2.27.0 953 2/8/2024
2.26.8 1,220 2/4/2024
2.26.0 929 1/29/2024
2.25.0 972 1/28/2024
2.24.9 1,015 1/25/2024
2.24.4 979 1/25/2024
2.24.1 1,275 1/22/2024
2.22.0 1,177 1/18/2024
2.21.12 1,080 1/18/2024
2.21.9 1,074 1/18/2024
2.21.4 1,203 1/13/2024
2.21.0 1,064 1/12/2024
2.20.2 1,112 1/11/2024
2.19.2 1,275 12/27/2023
2.19.0 775 12/26/2023
2.18.8 597 12/26/2023
2.18.0 1,204 12/24/2023
2.17.25 702 12/22/2023
2.17.20 751 12/5/2023
2.17.0 793 11/24/2023
2.16.2 622 11/23/2023
2.16.0 598 11/23/2023
2.15.24 590 11/22/2023
2.15.21 575 11/22/2023
2.15.17 621 11/20/2023
2.15.3 655 11/9/2023
2.15.0 542 11/8/2023
2.14.9 593 11/6/2023
2.14.7 599 11/6/2023
2.14.1 556 11/6/2023
2.13.63 588 10/29/2023
2.13.47 673 10/20/2023
2.13.8 524 10/13/2023
2.13.5 569 10/13/2023
2.12.15 532 10/10/2023
2.12.11 615 10/10/2023
2.12.5 599 10/6/2023
2.12.1 568 10/4/2023
2.11.12 588 10/1/2023
2.11.11 535 9/30/2023
2.11.9 561 9/30/2023
2.11.4 588 9/30/2023
2.11.0 594 9/29/2023
2.10.6 653 9/29/2023
2.10.0 542 9/28/2023
2.9.0 560 9/28/2023
2.8.23 491 9/26/2023
2.8.12 525 9/24/2023
2.8.4 498 9/24/2023
2.8.0 509 9/24/2023
2.7.10 530 9/23/2023
2.7.6 508 9/22/2023
2.6.0 489 9/19/2023
2.5.11 514 9/16/2023
2.5.5 478 9/14/2023
2.5.2 495 9/14/2023
2.5.0 467 9/14/2023
2.4.0 516 9/12/2023
2.3.2 554 9/11/2023
2.3.0 527 9/11/2023
2.2.0 516 9/11/2023
2.0.8 579 9/7/2023
2.0.5 539 9/6/2023
2.0.0 579 9/6/2023
1.9.38 572 9/5/2023
1.9.36 550 9/5/2023
1.9.35 529 9/4/2023
1.9.31 513 9/4/2023
1.9.28 515 9/4/2023
1.9.22 521 9/3/2023
1.9.17 565 9/3/2023
1.9.15 494 9/3/2023
1.9.8 533 9/1/2023
1.9.6 530 9/1/2023
1.9.4 563 9/1/2023
1.9.1 531 8/31/2023
1.8.22 573 8/29/2023
1.8.18 573 8/29/2023
1.8.8 580 8/24/2023
1.8.6 535 8/24/2023
1.7.0 556 8/22/2023
1.6.3 622 8/17/2023
1.6.2 641 8/17/2023
1.6.1 668 8/17/2023
1.6.0 666 8/17/2023
1.5.5 633 8/15/2023
1.5.0 640 8/14/2023
1.4.34 647 8/11/2023
1.4.33 617 8/11/2023
1.4.31 641 8/11/2023
1.4.29 621 8/10/2023
1.4.22 641 8/10/2023
1.4.21 645 8/10/2023
1.4.20 635 8/10/2023
1.4.18 600 8/7/2023
1.4.17 618 8/7/2023
1.4.15 638 8/7/2023
1.4.14 699 8/2/2023
1.4.12 612 8/2/2023
1.4.11 640 7/19/2023
1.4.10 678 7/19/2023
1.4.9 644 7/18/2023
1.4.8 608 7/18/2023
1.4.6 626 7/13/2023
1.4.5 605 7/11/2023
1.4.4 588 7/10/2023
1.4.3 637 7/10/2023
1.4.2 637 7/7/2023
1.4.1 638 7/6/2023
1.4.0 631 7/6/2023
1.3.17 674 7/5/2023
1.3.15 689 7/5/2023
1.3.14 579 7/5/2023
1.3.13 645 7/5/2023
1.3.12 663 6/30/2023
1.3.11 569 6/30/2023
1.3.8 597 6/30/2023
1.3.7 597 6/30/2023
1.3.6 616 6/30/2023
1.3.5 581 6/30/2023
1.3.4 598 6/30/2023
1.3.3 565 6/29/2023
1.3.2 608 6/29/2023
1.3.1 587 6/29/2023
1.3.0 581 6/29/2023
1.2.0 621 6/29/2023
1.1.0 607 6/29/2023
1.0.1 605 6/29/2023
0.3.26 588 6/29/2023
0.2.0 602 6/29/2023
0.1.1-initial-2-0027 504 6/8/2023
0.1.1-initial-2-0025 524 6/8/2023
0.1.1-initial-2-0024 498 6/8/2023
0.1.0 646 6/28/2023
0.1.0-initial-2-19 541 6/8/2023
0.1.0-initial-2-17 390 6/8/2023
0.1.0-initial-2-16 485 6/8/2023
0.1.0-initial-2-0023 474 6/8/2023
0.0.1-alpha03 276 5/29/2023
0.0.1-alpha02 278 5/28/2023
0.0.1-alpha01 270 5/28/2023