ModularPipelines.Azure 2.31.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package ModularPipelines.Azure --version 2.31.3
NuGet\Install-Package ModularPipelines.Azure -Version 2.31.3
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.Azure" Version="2.31.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ModularPipelines.Azure --version 2.31.3
#r "nuget: ModularPipelines.Azure, 2.31.3"
#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.Azure as a Cake Addin
#addin nuget:?package=ModularPipelines.Azure&version=2.31.3

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

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

Documentation

https://thomhurst.github.io/ModularPipelines

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

Package Description Version
ModularPipelines Write your pipelines in C#! nuget
ModularPipelines.AmazonWebServices Helpers for interacting with Amazon Web Services. nuget
ModularPipelines.Azure Helpers for interacting with Azure. nuget
ModularPipelines.Azure.Pipelines Helpers for interacting with Azure Pipeline agents. nuget
ModularPipelines.Chocolatey Helpers for interacting with the Chocolatey CLI. nuget
ModularPipelines.Cmd Helpers for interacting with the Windows cmd process. nuget
ModularPipelines.Docker Helpers for interacting with the Docker CLI. nuget
ModularPipelines.DotNet Helpers for interacting with dotnet CLI. nuget
ModularPipelines.Email Helpers for sending emails. nuget
ModularPipelines.Ftp Helpers for downloading and uploading via FTP. nuget
ModularPipelines.Git Helpers for interacting with git. nuget
ModularPipelines.GitHub Helpers for interacting with GitHub Actions build agents. nuget
ModularPipelines.Google Helpers for interacting with the Google gcloud CLI. nuget
ModularPipelines.Helm Helpers for interacting with Helm CLI. nuget
ModularPipelines.Kubernetes Helpers for interacting with kubectl CLI. nuget
ModularPipelines.MicrosoftTeams Helpers for sending Microsoft Teams cards. nuget
ModularPipelines.Node Helpers for interacting with node / npm CLI. nuget
ModularPipelines.Slack Helpers for sending Slack cards. nuget
ModularPipelines.TeamCity Helpers for interacting with TeamCity build agents. nuget
ModularPipelines.Terraform Helpers for interacting with Terraform CLI. nuget
ModularPipelines.WinGet Helpers for interacting with the Windows Package Manager. nuget
ModularPipelines.Yarn Helpers for interacting with Yarn CLI. nuget

Getting Started

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

Console Progress

image

Results

<img width="444" alt="image" src="https://github.com/thomhurst/ModularPipelines/assets/30480171/8963e891-2c29-4382-9a3e-6ced4daf4d4b">

How does this compare to Cake / Nuke

  • Strong types! You have complete control over what data, and what shape of data to pass around from and to different modules
  • No external tooling is required. Pipelines are run with a simple dotnet run
  • Full dependency injection support for your services
  • Similar and familiar setup to frameworks like ASP.NET Core
  • Real C# - Whereas frameworks like cake are a scripted form of C#
  • Parallelism - Work will run concurrently unless it is dependent on something else
  • The style of writing pipelines is very different - Work is organised into separate module classes, keeping code organised and more closely following SRP than having all your work in one main class. This also helps multiple contributors avoid things like merge conflicts

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 nugetFiles.Value!
            .SelectAsync(async nugetFile => await context.DotNet().Nuget.Push(new DotNetNugetPushOptions
            {
                Path = nugetFile,
                Source = "https://api.nuget.org/v3/index.json",
                ApiKey = _nugetSettings.Value.ApiKey!,
            }, cancellationToken), cancellationToken: cancellationToken)
            .ProcessOneAtATime();
    }
}

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 is compatible.  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

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.31.3 78 4/15/2024
2.31.0 65 4/15/2024
2.30.9 146 3/27/2024
2.30.5 72 3/26/2024
2.30.3 78 3/26/2024
2.29.32 72 3/26/2024
2.29.22 144 3/8/2024
2.29.15 83 3/1/2024
2.29.11 60 2/27/2024
2.29.9 76 2/26/2024
2.29.0 59 2/25/2024
2.28.0 97 2/23/2024
2.27.12 57 2/15/2024
2.27.9 57 2/14/2024
2.27.3 78 2/8/2024
2.27.0 54 2/8/2024
2.26.8 55 2/4/2024
2.26.0 57 1/29/2024
2.25.0 57 1/28/2024
2.24.9 61 1/25/2024
2.24.4 52 1/25/2024
2.24.1 63 1/22/2024
2.22.0 53 1/18/2024
2.21.12 52 1/18/2024
2.21.9 66 1/18/2024
2.21.4 76 1/13/2024
2.21.0 63 1/12/2024
2.20.2 96 1/11/2024
2.19.2 114 12/27/2023
2.19.0 80 12/26/2023
2.18.8 70 12/26/2023
2.18.0 84 12/24/2023
2.17.25 87 12/22/2023
2.17.20 94 12/5/2023
2.17.0 73 11/24/2023
2.16.2 62 11/23/2023
2.16.0 64 11/23/2023
2.15.24 63 11/22/2023
2.15.21 59 11/22/2023
2.15.17 63 11/20/2023
2.15.3 65 11/9/2023
2.15.0 45 11/8/2023
2.14.9 69 11/6/2023
2.14.7 64 11/6/2023
2.14.1 74 11/6/2023
2.13.63 76 10/29/2023
2.13.47 68 10/20/2023
2.13.8 88 10/13/2023
2.13.5 76 10/13/2023
2.12.15 71 10/10/2023
2.12.11 70 10/10/2023
2.12.5 85 10/6/2023
2.12.1 74 10/4/2023
2.11.12 75 10/1/2023
2.11.11 71 9/30/2023
2.11.9 74 9/30/2023
2.11.4 71 9/30/2023
2.11.0 77 9/29/2023
2.10.6 68 9/29/2023
2.10.0 71 9/28/2023
2.9.0 66 9/28/2023
2.8.23 66 9/26/2023
2.8.12 76 9/24/2023
2.8.4 68 9/24/2023
2.8.0 70 9/24/2023
2.7.10 68 9/23/2023
2.7.6 71 9/22/2023
2.6.0 76 9/19/2023
2.5.11 73 9/16/2023
2.5.5 91 9/14/2023
2.5.2 94 9/14/2023
2.5.0 70 9/14/2023
2.4.0 85 9/12/2023
2.3.2 87 9/11/2023
2.3.0 81 9/11/2023
2.2.0 84 9/11/2023
2.0.8 87 9/7/2023
2.0.5 78 9/6/2023
2.0.0 82 9/6/2023
1.9.38 82 9/5/2023
1.9.36 66 9/5/2023
1.9.35 81 9/4/2023
1.9.31 79 9/4/2023
1.9.28 84 9/4/2023
1.9.22 81 9/3/2023
1.9.17 82 9/3/2023
1.9.15 80 9/3/2023
1.9.8 94 9/1/2023
1.9.6 87 9/1/2023
1.9.4 90 9/1/2023
1.9.1 96 8/31/2023
1.8.22 105 8/29/2023
1.8.18 99 8/29/2023
1.8.8 94 8/24/2023
1.8.6 91 8/24/2023
1.7.0 87 8/22/2023
1.6.3 92 8/17/2023
1.6.2 91 8/17/2023
1.6.1 91 8/17/2023
1.6.0 94 8/17/2023
1.5.5 98 8/15/2023
1.5.0 92 8/14/2023
1.4.34 101 8/11/2023
1.4.33 104 8/11/2023
1.4.31 102 8/11/2023
1.4.29 97 8/10/2023
1.4.22 104 8/10/2023
1.4.21 112 8/10/2023
1.4.20 101 8/10/2023
1.4.18 106 8/7/2023
1.4.17 104 8/7/2023
1.4.15 104 8/7/2023
1.4.14 119 8/2/2023
1.4.12 108 8/2/2023