ModularPipelines.Analyzers 1.9.15

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

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

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

Write your pipelines in C#!

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.42.140 1,612 12/1/2024
2.42.134 580 11/30/2024
2.42.132 440 11/30/2024
2.42.115 4,261 11/17/2024
2.42.87 4,023 10/28/2024
2.42.67 4,313 9/29/2024
2.42.59 1,742 9/19/2024
2.42.54 568 9/19/2024
2.42.53 463 9/19/2024
2.42.47 1,468 9/13/2024
2.42.45 7,340 9/12/2024
2.42.9 2,445 9/5/2024
2.42.8 1,027 9/4/2024
2.42.0 658 9/4/2024
2.41.4 701 9/3/2024
2.41.0 805 9/3/2024
2.40.18 668 9/2/2024
2.40.15 576 9/2/2024
2.40.10 645 9/2/2024
2.40.8 612 9/2/2024
2.40.4 2,034 8/29/2024
2.40.1 693 8/28/2024
2.38.36 758 8/26/2024
2.38.25 1,398 8/12/2024
2.38.2 1,097 7/27/2024
2.38.1 453 7/27/2024
2.37.9 3,480 7/14/2024
2.37.1 117 7/14/2024
2.36.29 1,112 7/5/2024
2.36.23 957 6/30/2024
2.36.4 1,646 6/7/2024
2.35.0 895 6/2/2024
2.34.0 904 5/23/2024
2.33.0 1,101 5/20/2024
2.32.0 804 5/17/2024
2.31.3 1,646 4/15/2024
2.31.0 828 4/15/2024
2.30.9 1,019 3/27/2024
2.30.5 593 3/26/2024
2.30.3 715 3/26/2024
2.29.32 824 3/26/2024
2.29.22 1,240 3/8/2024
2.29.15 950 3/1/2024
2.29.11 937 2/27/2024
2.29.9 1,032 2/26/2024
2.29.0 941 2/25/2024
2.28.0 912 2/23/2024
2.27.12 1,084 2/15/2024
2.27.9 811 2/14/2024
2.27.3 1,097 2/8/2024
2.27.0 941 2/8/2024
2.26.8 1,218 2/4/2024
2.26.0 996 1/29/2024
2.25.0 981 1/28/2024
2.24.9 1,113 1/25/2024
2.24.4 976 1/25/2024
2.24.1 1,310 1/22/2024
2.22.0 1,182 1/18/2024
2.21.12 1,070 1/18/2024
2.21.9 1,074 1/18/2024
2.21.4 1,140 1/13/2024
2.21.0 1,046 1/12/2024
2.20.2 1,116 1/11/2024
2.19.2 1,214 12/27/2023
2.19.0 847 12/26/2023
2.18.8 669 12/26/2023
2.18.0 1,234 12/24/2023
2.17.25 708 12/22/2023
2.17.20 780 12/5/2023
2.17.0 839 11/24/2023
2.16.2 637 11/23/2023
2.16.0 644 11/23/2023
2.15.24 628 11/22/2023
2.15.21 648 11/22/2023
2.15.17 651 11/20/2023
2.15.3 691 11/9/2023
2.15.0 559 11/8/2023
2.14.9 647 11/6/2023
2.14.7 706 11/6/2023
2.14.1 647 11/6/2023
2.13.63 711 10/29/2023
2.13.47 732 10/20/2023
2.13.8 635 10/13/2023
2.13.5 626 10/13/2023
2.12.15 611 10/10/2023
2.12.11 720 10/10/2023
2.12.5 713 10/6/2023
2.12.1 678 10/4/2023
2.11.12 640 10/1/2023
2.11.11 648 9/30/2023
2.11.9 690 9/30/2023
2.11.4 715 9/30/2023
2.11.0 709 9/29/2023
2.10.6 757 9/29/2023
2.10.0 663 9/28/2023
2.9.0 641 9/28/2023
2.8.23 581 9/26/2023
2.8.12 625 9/24/2023
2.8.4 569 9/24/2023
2.8.0 563 9/24/2023
2.7.10 616 9/23/2023
2.7.6 623 9/22/2023
2.6.0 595 9/19/2023
2.5.11 566 9/16/2023
2.5.5 599 9/14/2023
2.5.2 631 9/14/2023
2.5.0 552 9/14/2023
2.4.0 624 9/12/2023
2.3.2 619 9/11/2023
2.3.0 643 9/11/2023
2.2.0 664 9/11/2023
2.0.8 618 9/7/2023
2.0.5 664 9/6/2023
2.0.0 694 9/6/2023
1.9.38 701 9/5/2023
1.9.36 605 9/5/2023
1.9.35 598 9/4/2023
1.9.31 597 9/4/2023
1.9.28 592 9/4/2023
1.9.22 616 9/3/2023
1.9.17 686 9/3/2023
1.9.15 642 9/3/2023
1.9.8 628 9/1/2023
1.9.6 601 9/1/2023
1.9.4 697 9/1/2023
1.9.1 610 8/31/2023
1.8.22 660 8/29/2023
1.8.18 648 8/29/2023
1.8.8 677 8/24/2023
1.8.6 672 8/24/2023
1.7.0 611 8/22/2023
1.6.3 650 8/17/2023
1.6.2 675 8/17/2023
1.6.1 738 8/17/2023
1.6.0 751 8/17/2023
1.5.5 706 8/15/2023
1.5.0 688 8/14/2023
1.4.34 735 8/11/2023
1.4.33 672 8/11/2023
1.4.31 725 8/11/2023
1.4.29 729 8/10/2023
1.4.22 742 8/10/2023
1.4.21 731 8/10/2023
1.4.20 718 8/10/2023
1.4.18 703 8/7/2023
1.4.17 766 8/7/2023
1.4.15 726 8/7/2023
1.4.14 685 8/2/2023
1.4.12 585 8/2/2023
1.4.11 617 7/19/2023
1.4.10 654 7/19/2023
1.4.9 621 7/18/2023
1.4.8 618 7/18/2023
1.4.6 614 7/13/2023
1.4.5 602 7/11/2023
1.4.4 617 7/10/2023
1.4.3 611 7/10/2023
1.4.2 654 7/7/2023
1.4.1 613 7/6/2023
1.4.0 633 7/6/2023
1.3.17 664 7/5/2023
1.3.15 682 7/5/2023
1.3.14 579 7/5/2023
1.3.13 643 7/5/2023
1.3.12 634 6/30/2023
1.3.11 588 6/30/2023
1.3.8 605 6/30/2023
1.3.7 595 6/30/2023
1.3.6 618 6/30/2023
1.3.5 575 6/30/2023
1.3.4 611 6/30/2023
1.3.3 575 6/29/2023
1.3.2 615 6/29/2023
1.3.1 564 6/29/2023
1.3.0 604 6/29/2023
1.2.0 606 6/29/2023
1.1.0 637 6/29/2023
1.0.1 589 6/29/2023
0.3.26 585 6/29/2023
0.2.0 180 6/29/2023
0.1.0 177 6/28/2023