ModularPipelines.DotNet 2.0.5

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

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

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

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

Package Downloads
ModularPipelines.NuGet 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 nuget CLI.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on ModularPipelines.DotNet:

Repository Stars
thomhurst/EnumerableAsyncProcessor
Process Multiple Asynchronous Tasks in Various Ways - One at a time / Batched / Rate limited / Concurrently
Version Downloads Last updated
2.34.0 200 5/23/2024
2.33.0 190 5/20/2024
2.32.0 141 5/17/2024
2.31.3 580 4/15/2024
2.31.0 79 4/15/2024
2.30.9 319 3/27/2024
2.30.5 82 3/26/2024
2.30.3 97 3/26/2024
2.29.32 98 3/26/2024
2.29.22 388 3/8/2024
2.29.15 164 3/1/2024
2.29.11 137 2/27/2024
2.29.9 213 2/26/2024
2.29.0 102 2/25/2024
2.28.0 94 2/23/2024
2.27.12 305 2/15/2024
2.27.9 122 2/14/2024
2.27.3 203 2/8/2024
2.27.0 84 2/8/2024
2.26.8 283 2/4/2024
2.26.0 256 1/29/2024
2.25.0 84 1/28/2024
2.24.9 205 1/25/2024
2.24.4 76 1/25/2024
2.24.1 275 1/22/2024
2.22.0 213 1/18/2024
2.21.12 104 1/18/2024
2.21.9 121 1/18/2024
2.21.4 156 1/13/2024
2.21.0 96 1/12/2024
2.20.2 143 1/11/2024
2.19.2 247 12/27/2023
2.19.0 183 12/26/2023
2.18.8 101 12/26/2023
2.18.0 180 12/24/2023
2.17.25 126 12/22/2023
2.17.20 318 12/5/2023
2.17.0 226 11/24/2023
2.16.2 122 11/23/2023
2.16.0 128 11/23/2023
2.15.24 110 11/22/2023
2.15.21 121 11/22/2023
2.15.17 131 11/20/2023
2.15.3 171 11/9/2023
2.15.0 94 11/8/2023
2.14.9 142 11/6/2023
2.14.7 115 11/6/2023
2.14.1 108 11/6/2023
2.13.63 156 10/29/2023
2.13.47 197 10/20/2023
2.13.8 145 10/13/2023
2.13.5 132 10/13/2023
2.12.15 137 10/10/2023
2.12.11 127 10/10/2023
2.12.5 126 10/6/2023
2.12.1 138 10/4/2023
2.11.12 149 10/1/2023
2.11.11 136 9/30/2023
2.11.9 125 9/30/2023
2.11.4 144 9/30/2023
2.11.0 125 9/29/2023
2.10.6 224 9/29/2023
2.10.0 123 9/28/2023
2.9.0 123 9/28/2023
2.8.23 131 9/26/2023
2.8.12 140 9/24/2023
2.8.4 112 9/24/2023
2.8.0 118 9/24/2023
2.7.10 115 9/23/2023
2.7.6 112 9/22/2023
2.6.0 109 9/19/2023
2.5.11 124 9/16/2023
2.5.5 141 9/14/2023
2.5.2 142 9/14/2023
2.5.0 112 9/14/2023
2.4.0 135 9/12/2023
2.3.2 150 9/11/2023
2.3.0 154 9/11/2023
2.2.0 157 9/11/2023
2.0.8 134 9/7/2023
2.0.5 136 9/6/2023
2.0.0 141 9/6/2023
1.9.38 140 9/5/2023
1.9.36 134 9/5/2023
1.9.35 123 9/4/2023
1.9.31 125 9/4/2023
1.9.28 133 9/4/2023
1.9.22 139 9/3/2023
1.9.17 122 9/3/2023
1.9.15 137 9/3/2023
1.9.8 133 9/1/2023
1.9.6 151 9/1/2023
1.9.4 141 9/1/2023
1.9.1 163 8/31/2023
1.8.22 174 8/29/2023
1.8.18 145 8/29/2023
1.8.8 173 8/24/2023
1.8.6 156 8/24/2023
1.7.0 162 8/22/2023
1.6.3 168 8/17/2023
1.6.2 158 8/17/2023
1.6.1 204 8/17/2023
1.6.0 174 8/17/2023
1.5.5 158 8/15/2023
1.5.0 162 8/14/2023
1.4.34 167 8/11/2023
1.4.33 166 8/11/2023
1.4.31 183 8/11/2023
1.4.29 189 8/10/2023
1.4.22 176 8/10/2023
1.4.21 174 8/10/2023
1.4.20 174 8/10/2023
1.4.18 176 8/7/2023
1.4.17 186 8/7/2023
1.4.15 162 8/7/2023
1.4.14 183 8/2/2023
1.4.12 187 8/2/2023
1.4.11 166 7/19/2023
1.4.10 175 7/19/2023
1.4.9 175 7/18/2023
1.4.8 172 7/18/2023
1.4.6 174 7/13/2023
1.4.5 162 7/11/2023
1.4.4 158 7/10/2023
1.4.3 160 7/10/2023
1.4.2 165 7/7/2023
1.4.1 178 7/6/2023
1.4.0 175 7/6/2023
1.3.17 184 7/5/2023
1.3.15 187 7/5/2023
1.3.14 149 7/5/2023
1.3.13 178 7/5/2023
1.3.12 181 6/30/2023
1.3.11 178 6/30/2023
1.3.8 172 6/30/2023
1.3.7 174 6/30/2023
1.3.6 172 6/30/2023
1.3.5 153 6/30/2023
1.3.4 169 6/30/2023
1.3.3 152 6/29/2023
1.3.2 166 6/29/2023
1.3.1 176 6/29/2023
1.3.0 152 6/29/2023
1.2.0 169 6/29/2023
1.1.0 164 6/29/2023
1.0.1 146 6/29/2023
0.3.26 182 6/29/2023
0.2.0 175 6/29/2023
0.1.1-initial-2-0027 147 6/8/2023
0.1.1-initial-2-0025 140 6/8/2023
0.1.1-initial-2-0024 129 6/8/2023
0.1.0 161 6/28/2023
0.1.0-initial-2-19 132 6/8/2023
0.1.0-initial-2-17 97 6/8/2023
0.1.0-initial-2-16 122 6/8/2023
0.1.0-initial-2-0023 118 6/8/2023
0.0.1-alpha03 149 5/29/2023
0.0.1-alpha02 119 5/28/2023
0.0.1-alpha01 140 5/28/2023