ModularPipelines.DotNet 2.5.11

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

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

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

Features

  • Parallel execution with easy waiting on dependencies if necessary
  • Familiar C# code
  • 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.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(IPipelineContext context, CancellationToken cancellationToken)
    {
        await Task.Yield();

        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
            });
    }
}
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 (1)

Showing the top 1 NuGet packages that depend on ModularPipelines.DotNet:

Package Downloads
ModularPipelines.NuGet

Helpers for interacting with dotnet nuget CLI.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on ModularPipelines.DotNet:

Repository Stars
thomhurst/TUnit
A modern, fast and flexible .NET testing framework
thomhurst/EnumerableAsyncProcessor
Process Multiple Asynchronous Tasks in Various Ways - One at a time / Batched / Rate limited / Concurrently
Version Downloads Last updated
2.42.87 884 10/28/2024
2.42.67 3,818 9/29/2024
2.42.59 1,352 9/19/2024
2.42.54 174 9/19/2024
2.42.53 106 9/19/2024
2.42.47 972 9/13/2024
2.42.45 5,407 9/12/2024
2.42.9 1,628 9/5/2024
2.42.8 485 9/4/2024
2.42.0 140 9/4/2024
2.41.4 153 9/3/2024
2.41.0 238 9/3/2024
2.40.18 170 9/2/2024
2.40.15 88 9/2/2024
2.40.10 172 9/2/2024
2.40.8 94 9/2/2024
2.40.4 1,546 8/29/2024
2.40.1 195 8/28/2024
2.38.36 219 8/26/2024
2.38.25 759 8/12/2024
2.38.2 735 7/27/2024
2.38.1 94 7/27/2024
2.37.9 347 7/14/2024
2.36.29 570 7/5/2024
2.36.23 416 6/30/2024
2.36.4 1,009 6/7/2024
2.35.0 231 6/2/2024
2.34.0 263 5/23/2024
2.33.0 467 5/20/2024
2.32.0 175 5/17/2024
2.31.3 925 4/15/2024
2.31.0 108 4/15/2024
2.30.9 349 3/27/2024
2.30.5 128 3/26/2024
2.30.3 124 3/26/2024
2.29.32 130 3/26/2024
2.29.22 423 3/8/2024
2.29.15 192 3/1/2024
2.29.11 160 2/27/2024
2.29.9 232 2/26/2024
2.29.0 125 2/25/2024
2.28.0 121 2/23/2024
2.27.12 350 2/15/2024
2.27.9 152 2/14/2024
2.27.3 244 2/8/2024
2.27.0 103 2/8/2024
2.26.8 316 2/4/2024
2.26.0 287 1/29/2024
2.25.0 112 1/28/2024
2.24.9 236 1/25/2024
2.24.4 100 1/25/2024
2.24.1 303 1/22/2024
2.22.0 251 1/18/2024
2.21.12 137 1/18/2024
2.21.9 167 1/18/2024
2.21.4 190 1/13/2024
2.21.0 118 1/12/2024
2.20.2 178 1/11/2024
2.19.2 293 12/27/2023
2.19.0 215 12/26/2023
2.18.8 127 12/26/2023
2.18.0 219 12/24/2023
2.17.25 162 12/22/2023
2.17.20 353 12/5/2023
2.17.0 256 11/24/2023
2.16.2 151 11/23/2023
2.16.0 158 11/23/2023
2.15.24 147 11/22/2023
2.15.21 144 11/22/2023
2.15.17 169 11/20/2023
2.15.3 212 11/9/2023
2.15.0 127 11/8/2023
2.14.9 183 11/6/2023
2.14.7 165 11/6/2023
2.14.1 141 11/6/2023
2.13.63 180 10/29/2023
2.13.47 226 10/20/2023
2.13.8 169 10/13/2023
2.13.5 166 10/13/2023
2.12.15 167 10/10/2023
2.12.11 164 10/10/2023
2.12.5 164 10/6/2023
2.12.1 168 10/4/2023
2.11.12 172 10/1/2023
2.11.11 168 9/30/2023
2.11.9 146 9/30/2023
2.11.4 174 9/30/2023
2.11.0 158 9/29/2023
2.10.6 256 9/29/2023
2.10.0 148 9/28/2023
2.9.0 160 9/28/2023
2.8.23 156 9/26/2023
2.8.12 167 9/24/2023
2.8.4 142 9/24/2023
2.8.0 155 9/24/2023
2.7.10 139 9/23/2023
2.7.6 145 9/22/2023
2.6.0 143 9/19/2023
2.5.11 150 9/16/2023
2.5.5 157 9/14/2023
2.5.2 177 9/14/2023
2.5.0 155 9/14/2023
2.4.0 159 9/12/2023
2.3.2 179 9/11/2023
2.3.0 181 9/11/2023
2.2.0 191 9/11/2023
2.0.8 176 9/7/2023
2.0.5 157 9/6/2023
2.0.0 184 9/6/2023
1.9.38 168 9/5/2023
1.9.36 162 9/5/2023
1.9.35 152 9/4/2023
1.9.31 150 9/4/2023
1.9.28 157 9/4/2023
1.9.22 170 9/3/2023
1.9.17 146 9/3/2023
1.9.15 166 9/3/2023
1.9.8 166 9/1/2023
1.9.6 182 9/1/2023
1.9.4 183 9/1/2023
1.9.1 195 8/31/2023
1.8.22 199 8/29/2023
1.8.18 178 8/29/2023
1.8.8 213 8/24/2023
1.8.6 190 8/24/2023
1.7.0 196 8/22/2023
1.6.3 212 8/17/2023
1.6.2 186 8/17/2023
1.6.1 232 8/17/2023
1.6.0 198 8/17/2023
1.5.5 187 8/15/2023
1.5.0 187 8/14/2023
1.4.34 208 8/11/2023
1.4.33 197 8/11/2023
1.4.31 212 8/11/2023
1.4.29 216 8/10/2023
1.4.22 206 8/10/2023
1.4.21 212 8/10/2023
1.4.20 203 8/10/2023
1.4.18 224 8/7/2023
1.4.17 205 8/7/2023
1.4.15 197 8/7/2023
1.4.14 213 8/2/2023
1.4.12 211 8/2/2023
1.4.11 198 7/19/2023
1.4.10 198 7/19/2023
1.4.9 205 7/18/2023
1.4.8 196 7/18/2023
1.4.6 207 7/13/2023
1.4.5 191 7/11/2023
1.4.4 194 7/10/2023
1.4.3 188 7/10/2023
1.4.2 212 7/7/2023
1.4.1 205 7/6/2023
1.4.0 202 7/6/2023
1.3.17 222 7/5/2023
1.3.15 216 7/5/2023
1.3.14 193 7/5/2023
1.3.13 210 7/5/2023
1.3.12 212 6/30/2023
1.3.11 201 6/30/2023
1.3.8 199 6/30/2023
1.3.7 206 6/30/2023
1.3.6 207 6/30/2023
1.3.5 198 6/30/2023
1.3.4 197 6/30/2023
1.3.3 194 6/29/2023
1.3.2 199 6/29/2023
1.3.1 211 6/29/2023
1.3.0 186 6/29/2023
1.2.0 196 6/29/2023
1.1.0 188 6/29/2023
1.0.1 183 6/29/2023
0.3.26 215 6/29/2023
0.2.0 201 6/29/2023
0.1.1-initial-2-0027 179 6/8/2023
0.1.1-initial-2-0025 182 6/8/2023
0.1.1-initial-2-0024 155 6/8/2023
0.1.0 215 6/28/2023
0.1.0-initial-2-19 157 6/8/2023
0.1.0-initial-2-17 128 6/8/2023
0.1.0-initial-2-16 160 6/8/2023
0.1.0-initial-2-0023 159 6/8/2023
0.0.1-alpha03 184 5/29/2023
0.0.1-alpha02 149 5/28/2023
0.0.1-alpha01 172 5/28/2023