ModularPipelines 1.9.17

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

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

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

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.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<ModuleResult<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<ModuleResult<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. 
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.Azure.Pipelines

Helpers for interacting with Azure Pipeline agents.

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.140 1,586 12/1/2024
2.42.134 543 11/30/2024
2.42.132 400 11/30/2024
2.42.115 4,211 11/17/2024
2.42.87 3,998 10/28/2024
2.42.67 4,276 9/29/2024
2.42.59 1,694 9/19/2024
2.42.54 533 9/19/2024
2.42.53 435 9/19/2024
2.42.47 1,407 9/13/2024
2.42.45 7,292 9/12/2024
2.42.9 2,400 9/5/2024
2.42.8 967 9/4/2024
2.42.0 612 9/4/2024
2.41.4 634 9/3/2024
2.41.0 758 9/3/2024
2.40.18 616 9/2/2024
2.40.15 528 9/2/2024
2.40.10 598 9/2/2024
2.40.8 542 9/2/2024
2.40.4 1,991 8/29/2024
2.40.1 626 8/28/2024
2.38.36 707 8/26/2024
2.38.25 1,338 8/12/2024
2.38.2 1,074 7/27/2024
2.38.1 424 7/27/2024
2.37.9 3,459 7/14/2024
2.37.1 82 7/14/2024
2.36.29 1,047 7/5/2024
2.36.23 931 6/30/2024
2.36.4 1,598 6/7/2024
2.35.0 830 6/2/2024
2.34.0 856 5/23/2024
2.33.0 1,045 5/20/2024
2.32.0 748 5/17/2024
2.31.3 1,611 4/15/2024
2.31.0 752 4/15/2024
2.30.9 931 3/27/2024
2.30.5 557 3/26/2024
2.30.3 621 3/26/2024
2.29.32 733 3/26/2024
2.29.22 1,123 3/8/2024
2.29.15 892 3/1/2024
2.29.11 859 2/27/2024
2.29.9 933 2/26/2024
2.29.0 814 2/25/2024
2.28.0 853 2/23/2024
2.27.12 997 2/15/2024
2.27.9 708 2/14/2024
2.27.3 1,021 2/8/2024
2.27.0 860 2/8/2024
2.26.8 1,124 2/4/2024
2.26.0 900 1/29/2024
2.25.0 882 1/28/2024
2.24.9 993 1/25/2024
2.24.4 864 1/25/2024
2.24.1 1,150 1/22/2024
2.22.0 1,051 1/18/2024
2.21.12 996 1/18/2024
2.21.9 952 1/18/2024
2.21.4 1,082 1/13/2024
2.21.0 934 1/12/2024
2.20.2 998 1/11/2024
2.19.2 1,128 12/27/2023
2.19.0 750 12/26/2023
2.18.8 574 12/26/2023
2.18.0 1,163 12/24/2023
2.17.25 666 12/22/2023
2.17.20 739 12/5/2023
2.17.0 778 11/24/2023
2.16.2 610 11/23/2023
2.16.0 571 11/23/2023
2.15.24 573 11/22/2023
2.15.21 564 11/22/2023
2.15.17 603 11/20/2023
2.15.3 623 11/9/2023
2.15.0 528 11/8/2023
2.14.9 566 11/6/2023
2.14.7 581 11/6/2023
2.14.1 543 11/6/2023
2.13.63 567 10/29/2023
2.13.47 643 10/20/2023
2.13.8 511 10/13/2023
2.13.5 522 10/13/2023
2.12.15 516 10/10/2023
2.12.11 590 10/10/2023
2.12.5 581 10/6/2023
2.12.1 553 10/4/2023
2.11.12 556 10/1/2023
2.11.11 515 9/30/2023
2.11.9 545 9/30/2023
2.11.4 560 9/30/2023
2.11.0 578 9/29/2023
2.10.6 632 9/29/2023
2.10.0 521 9/28/2023
2.9.0 536 9/28/2023
2.8.23 472 9/26/2023
2.8.12 511 9/24/2023
2.8.4 474 9/24/2023
2.8.0 488 9/24/2023
2.7.10 516 9/23/2023
2.7.6 483 9/22/2023
2.6.0 473 9/19/2023
2.5.11 496 9/16/2023
2.5.5 465 9/14/2023
2.5.2 479 9/14/2023
2.5.0 446 9/14/2023
2.4.0 483 9/12/2023
2.3.2 532 9/11/2023
2.3.0 510 9/11/2023
2.2.0 501 9/11/2023
2.0.8 560 9/7/2023
2.0.5 521 9/6/2023
2.0.0 562 9/6/2023
1.9.38 545 9/5/2023
1.9.36 523 9/5/2023
1.9.35 498 9/4/2023
1.9.31 493 9/4/2023
1.9.28 491 9/4/2023
1.9.22 504 9/3/2023
1.9.17 545 9/3/2023
1.9.15 476 9/3/2023
1.9.8 515 9/1/2023
1.9.6 507 9/1/2023
1.9.4 532 9/1/2023
1.9.1 510 8/31/2023
1.8.22 551 8/29/2023
1.8.18 542 8/29/2023
1.8.8 561 8/24/2023
1.8.6 516 8/24/2023
1.7.0 535 8/22/2023
1.6.3 601 8/17/2023
1.6.2 609 8/17/2023
1.6.1 631 8/17/2023
1.6.0 621 8/17/2023
1.5.5 607 8/15/2023
1.5.0 617 8/14/2023
1.4.34 624 8/11/2023
1.4.33 590 8/11/2023
1.4.31 614 8/11/2023
1.4.29 600 8/10/2023
1.4.22 616 8/10/2023
1.4.21 627 8/10/2023
1.4.20 611 8/10/2023
1.4.18 578 8/7/2023
1.4.17 594 8/7/2023
1.4.15 611 8/7/2023
1.4.14 674 8/2/2023
1.4.12 586 8/2/2023
1.4.11 609 7/19/2023
1.4.10 642 7/19/2023
1.4.9 615 7/18/2023
1.4.8 585 7/18/2023
1.4.6 596 7/13/2023
1.4.5 577 7/11/2023
1.4.4 565 7/10/2023
1.4.3 609 7/10/2023
1.4.2 616 7/7/2023
1.4.1 603 7/6/2023
1.4.0 606 7/6/2023
1.3.17 646 7/5/2023
1.3.15 660 7/5/2023
1.3.14 558 7/5/2023
1.3.13 615 7/5/2023
1.3.12 638 6/30/2023
1.3.11 537 6/30/2023
1.3.8 572 6/30/2023
1.3.7 565 6/30/2023
1.3.6 594 6/30/2023
1.3.5 542 6/30/2023
1.3.4 575 6/30/2023
1.3.3 543 6/29/2023
1.3.2 582 6/29/2023
1.3.1 561 6/29/2023
1.3.0 555 6/29/2023
1.2.0 595 6/29/2023
1.1.0 584 6/29/2023
1.0.1 580 6/29/2023
0.3.26 563 6/29/2023
0.2.0 562 6/29/2023
0.1.1-initial-2-0027 476 6/8/2023
0.1.1-initial-2-0025 496 6/8/2023
0.1.1-initial-2-0024 464 6/8/2023
0.1.0 603 6/28/2023
0.1.0-initial-2-19 507 6/8/2023
0.1.0-initial-2-17 359 6/8/2023
0.1.0-initial-2-16 452 6/8/2023
0.1.0-initial-2-0023 443 6/8/2023
0.0.1-alpha03 246 5/29/2023
0.0.1-alpha02 251 5/28/2023
0.0.1-alpha01 242 5/28/2023