ModularPipelines.Analyzers 2.7.10

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.Analyzers --version 2.7.10
NuGet\Install-Package ModularPipelines.Analyzers -Version 2.7.10
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.Analyzers" Version="2.7.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ModularPipelines.Analyzers --version 2.7.10
#r "nuget: ModularPipelines.Analyzers, 2.7.10"
#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.Analyzers as a Cake Addin
#addin nuget:?package=ModularPipelines.Analyzers&version=2.7.10

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

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
  • 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
  • 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
            });
    }
}

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.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

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

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

Write your pipelines in C#!

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.34.0 124 5/23/2024
2.33.0 426 5/20/2024
2.32.0 388 5/17/2024
2.31.3 875 4/15/2024
2.31.0 403 4/15/2024
2.30.9 647 3/27/2024
2.30.5 366 3/26/2024
2.30.3 445 3/26/2024
2.29.32 448 3/26/2024
2.29.22 797 3/8/2024
2.29.15 525 3/1/2024
2.29.11 516 2/27/2024
2.29.9 595 2/26/2024
2.29.0 553 2/25/2024
2.28.0 485 2/23/2024
2.27.12 709 2/15/2024
2.27.9 583 2/14/2024
2.27.3 674 2/8/2024
2.27.0 528 2/8/2024
2.26.8 792 2/4/2024
2.26.0 791 1/29/2024
2.25.0 608 1/28/2024
2.24.9 759 1/25/2024
2.24.4 542 1/25/2024
2.24.1 857 1/22/2024
2.22.0 760 1/18/2024
2.21.12 652 1/18/2024
2.21.9 654 1/18/2024
2.21.4 701 1/13/2024
2.21.0 623 1/12/2024
2.20.2 687 1/11/2024
2.19.2 778 12/27/2023
2.19.0 648 12/26/2023
2.18.8 458 12/26/2023
2.18.0 786 12/24/2023
2.17.25 545 12/22/2023
2.17.20 601 12/5/2023
2.17.0 682 11/24/2023
2.16.2 466 11/23/2023
2.16.0 479 11/23/2023
2.15.24 454 11/22/2023
2.15.21 482 11/22/2023
2.15.17 493 11/20/2023
2.15.3 511 11/9/2023
2.15.0 383 11/8/2023
2.14.9 485 11/6/2023
2.14.7 542 11/6/2023
2.14.1 488 11/6/2023
2.13.63 566 10/29/2023
2.13.47 590 10/20/2023
2.13.8 505 10/13/2023
2.13.5 485 10/13/2023
2.12.15 466 10/10/2023
2.12.11 556 10/10/2023
2.12.5 572 10/6/2023
2.12.1 528 10/4/2023
2.11.12 505 10/1/2023
2.11.11 514 9/30/2023
2.11.9 550 9/30/2023
2.11.4 586 9/30/2023
2.11.0 550 9/29/2023
2.10.6 603 9/29/2023
2.10.0 522 9/28/2023
2.9.0 495 9/28/2023
2.8.23 451 9/26/2023
2.8.12 501 9/24/2023
2.8.4 454 9/24/2023
2.8.0 436 9/24/2023
2.7.10 474 9/23/2023
2.7.6 504 9/22/2023
2.6.0 463 9/19/2023
2.5.11 439 9/16/2023
2.5.5 471 9/14/2023
2.5.2 494 9/14/2023
2.5.0 429 9/14/2023
2.4.0 498 9/12/2023
2.3.2 493 9/11/2023
2.3.0 507 9/11/2023
2.2.0 540 9/11/2023
2.0.8 486 9/7/2023
2.0.5 549 9/6/2023
2.0.0 548 9/6/2023
1.9.38 574 9/5/2023
1.9.36 485 9/5/2023
1.9.35 492 9/4/2023
1.9.31 472 9/4/2023
1.9.28 470 9/4/2023
1.9.22 508 9/3/2023
1.9.17 560 9/3/2023
1.9.15 523 9/3/2023
1.9.8 509 9/1/2023
1.9.6 478 9/1/2023
1.9.4 556 9/1/2023
1.9.1 478 8/31/2023
1.8.22 539 8/29/2023
1.8.18 522 8/29/2023
1.8.8 557 8/24/2023
1.8.6 536 8/24/2023
1.7.0 491 8/22/2023
1.6.3 522 8/17/2023
1.6.2 543 8/17/2023
1.6.1 611 8/17/2023
1.6.0 623 8/17/2023
1.5.5 584 8/15/2023
1.5.0 559 8/14/2023
1.4.34 596 8/11/2023
1.4.33 546 8/11/2023
1.4.31 600 8/11/2023
1.4.29 600 8/10/2023
1.4.22 639 8/10/2023
1.4.21 591 8/10/2023
1.4.20 603 8/10/2023
1.4.18 577 8/7/2023
1.4.17 647 8/7/2023
1.4.15 607 8/7/2023
1.4.14 569 8/2/2023
1.4.12 480 8/2/2023
1.4.11 507 7/19/2023
1.4.10 556 7/19/2023
1.4.9 501 7/18/2023
1.4.8 518 7/18/2023
1.4.6 517 7/13/2023
1.4.5 494 7/11/2023
1.4.4 514 7/10/2023
1.4.3 508 7/10/2023
1.4.2 534 7/7/2023
1.4.1 485 7/6/2023
1.4.0 531 7/6/2023
1.3.17 550 7/5/2023
1.3.15 571 7/5/2023
1.3.14 474 7/5/2023
1.3.13 536 7/5/2023
1.3.12 533 6/30/2023
1.3.11 484 6/30/2023
1.3.8 506 6/30/2023
1.3.7 491 6/30/2023
1.3.6 516 6/30/2023
1.3.5 482 6/30/2023
1.3.4 513 6/30/2023
1.3.3 468 6/29/2023
1.3.2 530 6/29/2023
1.3.1 463 6/29/2023
1.3.0 510 6/29/2023
1.2.0 509 6/29/2023
1.1.0 528 6/29/2023
1.0.1 492 6/29/2023
0.3.26 484 6/29/2023
0.2.0 150 6/29/2023
0.1.0 148 6/28/2023