ModularPipelines.Azure.Pipelines 2.0.5

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 2.0.5
                    
NuGet\Install-Package ModularPipelines.Azure.Pipelines -Version 2.0.5
                    
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="2.0.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularPipelines.Azure.Pipelines" Version="2.0.5" />
                    
Directory.Packages.props
<PackageReference Include="ModularPipelines.Azure.Pipelines" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ModularPipelines.Azure.Pipelines --version 2.0.5
                    
#r "nuget: ModularPipelines.Azure.Pipelines, 2.0.5"
                    
#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.
#addin nuget:?package=ModularPipelines.Azure.Pipelines&version=2.0.5
                    
Install ModularPipelines.Azure.Pipelines as a Cake Addin
#tool nuget:?package=ModularPipelines.Azure.Pipelines&version=2.0.5
                    
Install ModularPipelines.Azure.Pipelines as a Cake Tool

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.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<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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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.43.0 119 2 months ago
2.42.319 106 3 months ago
2.42.246 89 4 months ago
2.42.228 104 4 months ago
2.42.226 89 4 months ago
2.42.140 250 5 months ago
2.42.134 101 5 months ago
2.42.132 99 5 months ago
2.42.115 104 6 months ago
2.42.87 133 6 months ago
2.42.67 113 7 months ago
2.42.59 112 8 months ago
2.42.54 104 8 months ago
2.42.53 101 8 months ago
2.42.47 115 8 months ago
2.42.45 113 8 months ago
2.42.9 135 8 months ago
2.42.8 114 8 months ago
2.42.0 117 8 months ago
2.41.4 114 8 months ago
2.41.0 123 8 months ago
2.40.18 114 8 months ago
2.40.15 111 8 months ago
2.40.10 117 8 months ago
2.40.8 108 8 months ago
2.40.4 99 8 months ago
2.40.1 116 8 months ago
2.38.36 113 8 months ago
2.38.25 131 9 months ago
2.38.2 91 9 months ago
2.38.1 101 9 months ago
2.37.9 115 10 months ago
2.36.29 126 7/5/2024
2.36.23 116 6/30/2024
2.36.4 113 6/7/2024
2.35.0 110 6/2/2024
2.34.0 129 5/23/2024
2.33.0 130 5/20/2024
2.32.0 129 5/17/2024
2.31.3 141 4/15/2024
2.31.0 132 4/15/2024
2.30.9 144 3/27/2024
2.30.5 133 3/26/2024
2.30.3 161 3/26/2024
2.29.32 156 3/26/2024
2.29.22 213 3/8/2024
2.29.15 264 3/1/2024
2.29.11 208 2/27/2024
2.29.9 233 2/26/2024
2.29.0 242 2/25/2024
2.28.0 238 2/23/2024
2.27.12 212 2/15/2024
2.27.9 258 2/14/2024
2.27.3 272 2/8/2024
2.27.0 263 2/8/2024
2.26.8 249 2/4/2024
2.26.0 255 1/29/2024
2.25.0 285 1/28/2024
2.24.9 297 1/25/2024
2.24.4 246 1/25/2024
2.24.1 308 1/22/2024
2.22.0 304 1/18/2024
2.21.12 279 1/18/2024
2.21.9 322 1/18/2024
2.21.4 314 1/13/2024
2.21.0 319 1/12/2024
2.20.2 285 1/11/2024
2.19.2 395 12/27/2023
2.19.0 325 12/26/2023
2.18.8 302 12/26/2023
2.18.0 365 12/24/2023
2.17.25 362 12/22/2023
2.17.20 447 12/5/2023
2.17.0 439 11/24/2023
2.16.2 442 11/23/2023
2.16.0 400 11/23/2023
2.15.24 368 11/22/2023
2.15.21 428 11/22/2023
2.15.17 383 11/20/2023
2.15.3 426 11/9/2023
2.15.0 324 11/8/2023
2.14.9 370 11/6/2023
2.14.7 423 11/6/2023
2.14.1 401 11/6/2023
2.13.63 405 10/29/2023
2.13.47 422 10/20/2023
2.13.8 389 10/13/2023
2.13.5 425 10/13/2023
2.12.15 395 10/10/2023
2.12.11 488 10/10/2023
2.12.5 463 10/6/2023
2.12.1 420 10/4/2023
2.11.12 425 10/1/2023
2.11.11 393 9/30/2023
2.11.9 464 9/30/2023
2.11.4 474 9/30/2023
2.11.0 490 9/29/2023
2.10.6 419 9/29/2023
2.10.0 434 9/28/2023
2.9.0 420 9/28/2023
2.8.23 416 9/26/2023
2.8.12 440 9/24/2023
2.8.4 450 9/24/2023
2.8.0 431 9/24/2023
2.7.10 472 9/23/2023
2.7.6 436 9/22/2023
2.6.0 456 9/19/2023
2.5.11 409 9/16/2023
2.5.5 420 9/14/2023
2.5.2 453 9/14/2023
2.5.0 418 9/14/2023
2.4.0 433 9/12/2023
2.3.2 464 9/11/2023
2.3.0 450 9/11/2023
2.2.0 423 9/11/2023
2.0.8 556 9/7/2023
2.0.5 494 9/6/2023
2.0.0 494 9/6/2023
1.9.38 481 9/5/2023
1.9.36 446 9/5/2023
1.9.35 450 9/4/2023
1.9.31 415 9/4/2023
1.9.28 475 9/4/2023
1.9.22 521 9/3/2023
1.9.17 550 9/3/2023
1.9.15 499 9/3/2023
1.9.8 502 9/1/2023
1.9.6 539 9/1/2023
1.9.4 479 9/1/2023
1.9.1 443 8/31/2023
1.8.22 481 8/29/2023
1.8.18 490 8/29/2023
1.8.8 530 8/24/2023
1.8.6 457 8/24/2023
1.7.0 516 8/22/2023
1.6.3 473 8/17/2023
1.6.2 548 8/17/2023
1.6.1 541 8/17/2023
1.6.0 538 8/17/2023
1.5.5 506 8/15/2023
1.5.0 534 8/14/2023
1.4.34 538 8/11/2023
1.4.33 485 8/11/2023
1.4.31 548 8/11/2023
1.4.29 529 8/10/2023
1.4.22 578 8/10/2023
1.4.21 534 8/10/2023
1.4.20 521 8/10/2023
1.4.18 518 8/7/2023
1.4.17 567 8/7/2023
1.4.15 498 8/7/2023
1.4.14 623 8/2/2023
1.4.12 511 8/2/2023
1.4.11 568 7/19/2023
1.4.10 665 7/19/2023
1.4.9 552 7/18/2023
1.4.8 526 7/18/2023
1.4.6 589 7/13/2023
1.4.5 536 7/11/2023
1.4.4 548 7/10/2023
1.4.3 554 7/10/2023
1.4.2 568 7/7/2023
1.4.1 478 7/6/2023
1.4.0 572 7/6/2023
1.3.17 587 7/5/2023
1.3.15 660 7/5/2023
1.3.14 499 7/5/2023
1.3.13 604 7/5/2023
1.3.12 664 6/30/2023
1.3.11 507 6/30/2023
1.3.8 537 6/30/2023
1.3.7 562 6/30/2023
1.3.6 610 6/30/2023
1.3.5 567 6/30/2023
1.3.4 529 6/30/2023
1.3.3 477 6/29/2023
1.3.2 614 6/29/2023
1.3.1 573 6/29/2023
1.3.0 567 6/29/2023
1.2.0 601 6/29/2023
1.1.0 629 6/29/2023
1.0.1 558 6/29/2023
0.3.26 578 6/29/2023
0.2.0 625 6/29/2023
0.1.1-initial-2-0027 522 6/8/2023
0.1.1-initial-2-0025 518 6/8/2023
0.1.1-initial-2-0024 520 6/8/2023
0.1.0 578 6/28/2023
0.1.0-initial-2-19 548 6/8/2023
0.1.0-initial-2-17 507 6/8/2023
0.1.0-initial-2-16 564 6/8/2023
0.1.0-initial-2-0023 471 6/8/2023