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

// Install ModularPipelines.Azure.Pipelines as a Cake Tool
#tool nuget:?package=ModularPipelines.Azure.Pipelines&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
            });
    }
}
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

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.42.67 0 9/29/2024
2.42.59 71 9/19/2024
2.42.54 69 9/19/2024
2.42.53 64 9/19/2024
2.42.47 82 9/13/2024
2.42.45 81 9/12/2024
2.42.9 88 9/5/2024
2.42.8 81 9/4/2024
2.42.0 86 9/4/2024
2.41.4 81 9/3/2024
2.41.0 91 9/3/2024
2.40.18 83 9/2/2024
2.40.15 84 9/2/2024
2.40.10 80 9/2/2024
2.40.8 76 9/2/2024
2.40.4 75 8/29/2024
2.40.1 88 8/28/2024
2.38.36 87 8/26/2024
2.38.25 106 8/12/2024
2.38.2 69 7/27/2024
2.38.1 76 7/27/2024
2.37.9 89 7/14/2024
2.36.29 98 7/5/2024
2.36.23 93 6/30/2024
2.36.4 91 6/7/2024
2.35.0 89 6/2/2024
2.34.0 106 5/23/2024
2.33.0 105 5/20/2024
2.32.0 108 5/17/2024
2.31.3 123 4/15/2024
2.31.0 111 4/15/2024
2.30.9 126 3/27/2024
2.30.5 116 3/26/2024
2.30.3 141 3/26/2024
2.29.32 139 3/26/2024
2.29.22 181 3/8/2024
2.29.15 247 3/1/2024
2.29.11 189 2/27/2024
2.29.9 217 2/26/2024
2.29.0 224 2/25/2024
2.28.0 218 2/23/2024
2.27.12 192 2/15/2024
2.27.9 237 2/14/2024
2.27.3 246 2/8/2024
2.27.0 242 2/8/2024
2.26.8 232 2/4/2024
2.26.0 238 1/29/2024
2.25.0 267 1/28/2024
2.24.9 278 1/25/2024
2.24.4 229 1/25/2024
2.24.1 291 1/22/2024
2.22.0 285 1/18/2024
2.21.12 262 1/18/2024
2.21.9 298 1/18/2024
2.21.4 294 1/13/2024
2.21.0 287 1/12/2024
2.20.2 267 1/11/2024
2.19.2 378 12/27/2023
2.19.0 309 12/26/2023
2.18.8 286 12/26/2023
2.18.0 342 12/24/2023
2.17.25 345 12/22/2023
2.17.20 433 12/5/2023
2.17.0 420 11/24/2023
2.16.2 426 11/23/2023
2.16.0 373 11/23/2023
2.15.24 356 11/22/2023
2.15.21 413 11/22/2023
2.15.17 370 11/20/2023
2.15.3 409 11/9/2023
2.15.0 312 11/8/2023
2.14.9 354 11/6/2023
2.14.7 387 11/6/2023
2.14.1 387 11/6/2023
2.13.63 392 10/29/2023
2.13.47 406 10/20/2023
2.13.8 374 10/13/2023
2.13.5 403 10/13/2023
2.12.15 380 10/10/2023
2.12.11 472 10/10/2023
2.12.5 448 10/6/2023
2.12.1 406 10/4/2023
2.11.12 411 10/1/2023
2.11.11 378 9/30/2023
2.11.9 449 9/30/2023
2.11.4 458 9/30/2023
2.11.0 461 9/29/2023
2.10.6 403 9/29/2023
2.10.0 418 9/28/2023
2.9.0 403 9/28/2023
2.8.23 401 9/26/2023
2.8.12 425 9/24/2023
2.8.4 430 9/24/2023
2.8.0 416 9/24/2023
2.7.10 457 9/23/2023
2.7.6 420 9/22/2023
2.6.0 441 9/19/2023
2.5.11 394 9/16/2023
2.5.5 404 9/14/2023
2.5.2 438 9/14/2023
2.5.0 403 9/14/2023
2.4.0 400 9/12/2023
2.3.2 447 9/11/2023
2.3.0 435 9/11/2023
2.2.0 409 9/11/2023
2.0.8 540 9/7/2023
2.0.5 478 9/6/2023
2.0.0 479 9/6/2023
1.9.38 461 9/5/2023
1.9.36 430 9/5/2023
1.9.35 432 9/4/2023
1.9.31 399 9/4/2023
1.9.28 459 9/4/2023
1.9.22 491 9/3/2023
1.9.17 534 9/3/2023
1.9.15 483 9/3/2023
1.9.8 479 9/1/2023
1.9.6 522 9/1/2023
1.9.4 463 9/1/2023
1.9.1 421 8/31/2023
1.8.22 465 8/29/2023
1.8.18 474 8/29/2023
1.8.8 514 8/24/2023
1.8.6 441 8/24/2023
1.7.0 498 8/22/2023
1.6.3 453 8/17/2023
1.6.2 531 8/17/2023
1.6.1 508 8/17/2023
1.6.0 521 8/17/2023
1.5.5 490 8/15/2023
1.5.0 516 8/14/2023
1.4.34 518 8/11/2023
1.4.33 465 8/11/2023
1.4.31 527 8/11/2023
1.4.29 512 8/10/2023
1.4.22 561 8/10/2023
1.4.21 512 8/10/2023
1.4.20 503 8/10/2023
1.4.18 497 8/7/2023
1.4.17 551 8/7/2023
1.4.15 477 8/7/2023
1.4.14 606 8/2/2023
1.4.12 495 8/2/2023
1.4.11 549 7/19/2023
1.4.10 620 7/19/2023
1.4.9 535 7/18/2023
1.4.8 510 7/18/2023
1.4.6 567 7/13/2023
1.4.5 519 7/11/2023
1.4.4 524 7/10/2023
1.4.3 536 7/10/2023
1.4.2 553 7/7/2023
1.4.1 462 7/6/2023
1.4.0 548 7/6/2023
1.3.17 568 7/5/2023
1.3.15 644 7/5/2023
1.3.14 480 7/5/2023
1.3.13 587 7/5/2023
1.3.12 643 6/30/2023
1.3.11 492 6/30/2023
1.3.8 520 6/30/2023
1.3.7 547 6/30/2023
1.3.6 595 6/30/2023
1.3.5 531 6/30/2023
1.3.4 506 6/30/2023
1.3.3 460 6/29/2023
1.3.2 598 6/29/2023
1.3.1 552 6/29/2023
1.3.0 552 6/29/2023
1.2.0 583 6/29/2023
1.1.0 614 6/29/2023
1.0.1 540 6/29/2023
0.3.26 563 6/29/2023
0.2.0 606 6/29/2023
0.1.1-initial-2-0027 503 6/8/2023
0.1.1-initial-2-0025 500 6/8/2023
0.1.1-initial-2-0024 501 6/8/2023
0.1.0 560 6/28/2023
0.1.0-initial-2-19 515 6/8/2023
0.1.0-initial-2-17 486 6/8/2023
0.1.0-initial-2-16 547 6/8/2023
0.1.0-initial-2-0023 451 6/8/2023