ModularPipelines 1.9.35

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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.35
NuGet\Install-Package ModularPipelines -Version 1.9.35
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.35" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ModularPipelines --version 1.9.35
#r "nuget: ModularPipelines, 1.9.35"
#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.35

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

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 (24)

Showing the top 5 NuGet packages that depend on ModularPipelines:

Package Downloads
ModularPipelines.Azure.Pipelines The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Helpers for interacting with Azure Pipeline agents.

ModularPipelines.DotNet The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Helpers for interacting with dotnet CLI.

ModularPipelines.AmazonWebServices The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Helpers for interacting with Amazon Web Services.

ModularPipelines.Git The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Helpers for interacting with git.

ModularPipelines.Cmd The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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.36.4 840 6/7/2024
2.35.0 491 6/2/2024
2.34.0 520 5/23/2024
2.33.0 538 5/20/2024
2.32.0 386 5/17/2024
2.31.3 947 4/15/2024
2.31.0 390 4/15/2024
2.30.9 629 3/27/2024
2.30.5 384 3/26/2024
2.30.3 422 3/26/2024
2.29.32 415 3/26/2024
2.29.22 761 3/8/2024
2.29.15 537 3/1/2024
2.29.11 504 2/27/2024
2.29.9 569 2/26/2024
2.29.0 505 2/25/2024
2.28.0 495 2/23/2024
2.27.12 684 2/15/2024
2.27.9 538 2/14/2024
2.27.3 673 2/8/2024
2.27.0 512 2/8/2024
2.26.8 764 2/4/2024
2.26.0 718 1/29/2024
2.25.0 563 1/28/2024
2.24.9 697 1/25/2024
2.24.4 508 1/25/2024
2.24.1 783 1/22/2024
2.22.0 687 1/18/2024
2.21.12 629 1/18/2024
2.21.9 606 1/18/2024
2.21.4 699 1/13/2024
2.21.0 584 1/12/2024
2.20.2 645 1/11/2024
2.19.2 776 12/27/2023
2.19.0 568 12/26/2023
2.18.8 399 12/26/2023
2.18.0 797 12/24/2023
2.17.25 517 12/22/2023
2.17.20 578 12/5/2023
2.17.0 636 11/24/2023
2.16.2 456 11/23/2023
2.16.0 422 11/23/2023
2.15.24 415 11/22/2023
2.15.21 427 11/22/2023
2.15.17 458 11/20/2023
2.15.3 472 11/9/2023
2.15.0 380 11/8/2023
2.14.9 426 11/6/2023
2.14.7 435 11/6/2023
2.14.1 406 11/6/2023
2.13.63 443 10/29/2023
2.13.47 520 10/20/2023
2.13.8 399 10/13/2023
2.13.5 406 10/13/2023
2.12.15 401 10/10/2023
2.12.11 440 10/10/2023
2.12.5 456 10/6/2023
2.12.1 429 10/4/2023
2.11.12 443 10/1/2023
2.11.11 405 9/30/2023
2.11.9 415 9/30/2023
2.11.4 452 9/30/2023
2.11.0 437 9/29/2023
2.10.6 505 9/29/2023
2.10.0 406 9/28/2023
2.9.0 412 9/28/2023
2.8.23 376 9/26/2023
2.8.12 407 9/24/2023
2.8.4 384 9/24/2023
2.8.0 383 9/24/2023
2.7.10 397 9/23/2023
2.7.6 387 9/22/2023
2.6.0 365 9/19/2023
2.5.11 377 9/16/2023
2.5.5 360 9/14/2023
2.5.2 368 9/14/2023
2.5.0 336 9/14/2023
2.4.0 380 9/12/2023
2.3.2 423 9/11/2023
2.3.0 396 9/11/2023
2.2.0 408 9/11/2023
2.0.8 447 9/7/2023
2.0.5 414 9/6/2023
2.0.0 443 9/6/2023
1.9.38 441 9/5/2023
1.9.36 423 9/5/2023
1.9.35 406 9/4/2023
1.9.31 387 9/4/2023
1.9.28 389 9/4/2023
1.9.22 413 9/3/2023
1.9.17 439 9/3/2023
1.9.15 381 9/3/2023
1.9.8 413 9/1/2023
1.9.6 412 9/1/2023
1.9.4 422 9/1/2023
1.9.1 411 8/31/2023
1.8.22 458 8/29/2023
1.8.18 443 8/29/2023
1.8.8 454 8/24/2023
1.8.6 404 8/24/2023
1.7.0 445 8/22/2023
1.6.3 487 8/17/2023
1.6.2 499 8/17/2023
1.6.1 527 8/17/2023
1.6.0 515 8/17/2023
1.5.5 503 8/15/2023
1.5.0 504 8/14/2023
1.4.34 512 8/11/2023
1.4.33 481 8/11/2023
1.4.31 518 8/11/2023
1.4.29 494 8/10/2023
1.4.22 533 8/10/2023
1.4.21 506 8/10/2023
1.4.20 520 8/10/2023
1.4.18 470 8/7/2023
1.4.17 495 8/7/2023
1.4.15 504 8/7/2023
1.4.14 565 8/2/2023
1.4.12 486 8/2/2023
1.4.11 514 7/19/2023
1.4.10 551 7/19/2023
1.4.9 505 7/18/2023
1.4.8 496 7/18/2023
1.4.6 490 7/13/2023
1.4.5 476 7/11/2023
1.4.4 473 7/10/2023
1.4.3 513 7/10/2023
1.4.2 507 7/7/2023
1.4.1 483 7/6/2023
1.4.0 509 7/6/2023
1.3.17 539 7/5/2023
1.3.15 563 7/5/2023
1.3.14 462 7/5/2023
1.3.13 524 7/5/2023
1.3.12 536 6/30/2023
1.3.11 446 6/30/2023
1.3.8 485 6/30/2023
1.3.7 465 6/30/2023
1.3.6 501 6/30/2023
1.3.5 464 6/30/2023
1.3.4 489 6/30/2023
1.3.3 441 6/29/2023
1.3.2 505 6/29/2023
1.3.1 476 6/29/2023
1.3.0 481 6/29/2023
1.2.0 502 6/29/2023
1.1.0 496 6/29/2023
1.0.1 484 6/29/2023
0.3.26 477 6/29/2023
0.2.0 483 6/29/2023
0.1.1-initial-2-0027 401 6/8/2023
0.1.1-initial-2-0025 393 6/8/2023
0.1.1-initial-2-0024 395 6/8/2023
0.1.0 502 6/28/2023
0.1.0-initial-2-19 418 6/8/2023
0.1.0-initial-2-17 310 6/8/2023
0.1.0-initial-2-16 379 6/8/2023
0.1.0-initial-2-0023 361 6/8/2023
0.0.1-alpha03 194 5/29/2023
0.0.1-alpha02 186 5/28/2023
0.0.1-alpha01 177 5/28/2023