ModularPipelines.DotNet 1.9.22

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package ModularPipelines.DotNet --version 1.9.22
                    
NuGet\Install-Package ModularPipelines.DotNet -Version 1.9.22
                    
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="1.9.22" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularPipelines.DotNet" Version="1.9.22" />
                    
Directory.Packages.props
<PackageReference Include="ModularPipelines.DotNet" />
                    
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.DotNet --version 1.9.22
                    
#r "nuget: ModularPipelines.DotNet, 1.9.22"
                    
#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.DotNet&version=1.9.22
                    
Install as a Cake Addin
#tool nuget:?package=ModularPipelines.DotNet&version=1.9.22
                    
Install 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.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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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

Helpers for interacting with dotnet nuget CLI.

GitHub repositories (2)

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

Repository Stars
thomhurst/TUnit
A modern, fast and flexible .NET testing framework
thomhurst/EnumerableAsyncProcessor
Process Multiple Asynchronous Tasks in Various Ways - One at a time / Batched / Rate limited / Concurrently
Version Downloads Last Updated
2.44.45 2,642 5/25/2025
2.44.44 763 5/19/2025
2.43.0 10,677 2/24/2025
2.42.319 1,376 2/18/2025
2.42.246 6,645 1/19/2025
2.42.228 1,763 1/10/2025
2.42.226 191 1/9/2025
2.42.140 3,436 12/1/2024
2.42.134 393 11/30/2024
2.42.132 163 11/30/2024
2.42.115 12,361 11/17/2024
2.42.87 3,838 10/28/2024
2.42.67 3,901 9/29/2024
2.42.59 1,406 9/19/2024
2.42.54 235 9/19/2024
2.42.53 155 9/19/2024
2.42.47 1,029 9/13/2024
2.42.45 6,941 9/12/2024
2.42.9 1,899 9/5/2024
2.42.8 526 9/4/2024
2.42.0 178 9/4/2024
2.41.4 191 9/3/2024
2.41.0 287 9/3/2024
2.40.18 213 9/2/2024
2.40.15 132 9/2/2024
2.40.10 231 9/2/2024
2.40.8 133 9/2/2024
2.40.4 1,596 8/29/2024
2.40.1 246 8/28/2024
2.38.36 259 8/26/2024
2.38.25 830 8/12/2024
2.38.2 795 7/27/2024
2.38.1 129 7/27/2024
2.37.9 403 7/14/2024
2.36.29 621 7/5/2024
2.36.23 458 6/30/2024
2.36.4 1,052 6/7/2024
2.35.0 264 6/2/2024
2.34.0 303 5/23/2024
2.33.0 497 5/20/2024
2.32.0 211 5/17/2024
2.31.3 1,228 4/15/2024
2.31.0 158 4/15/2024
2.30.9 384 3/27/2024
2.30.5 160 3/26/2024
2.30.3 155 3/26/2024
2.29.32 167 3/26/2024
2.29.22 457 3/8/2024
2.29.15 223 3/1/2024
2.29.11 203 2/27/2024
2.29.9 270 2/26/2024
2.29.0 166 2/25/2024
2.28.0 157 2/23/2024
2.27.12 382 2/15/2024
2.27.9 189 2/14/2024
2.27.3 279 2/8/2024
2.27.0 144 2/8/2024
2.26.8 365 2/4/2024
2.26.0 318 1/29/2024
2.25.0 145 1/28/2024
2.24.9 272 1/25/2024
2.24.4 143 1/25/2024
2.24.1 346 1/22/2024
2.22.0 292 1/18/2024
2.21.12 174 1/18/2024
2.21.9 207 1/18/2024
2.21.4 220 1/13/2024
2.21.0 165 1/12/2024
2.20.2 211 1/11/2024
2.19.2 325 12/27/2023
2.19.0 247 12/26/2023
2.18.8 160 12/26/2023
2.18.0 255 12/24/2023
2.17.25 193 12/22/2023
2.17.20 376 12/5/2023
2.17.0 288 11/24/2023
2.16.2 170 11/23/2023
2.16.0 178 11/23/2023
2.15.24 180 11/22/2023
2.15.21 169 11/22/2023
2.15.17 198 11/20/2023
2.15.3 261 11/9/2023
2.15.0 150 11/8/2023
2.14.9 216 11/6/2023
2.14.7 186 11/6/2023
2.14.1 161 11/6/2023
2.13.63 202 10/29/2023
2.13.47 278 10/20/2023
2.13.8 196 10/13/2023
2.13.5 233 10/13/2023
2.12.15 196 10/10/2023
2.12.11 192 10/10/2023
2.12.5 196 10/6/2023
2.12.1 195 10/4/2023
2.11.12 218 10/1/2023
2.11.11 194 9/30/2023
2.11.9 178 9/30/2023
2.11.4 201 9/30/2023
2.11.0 182 9/29/2023
2.10.6 286 9/29/2023
2.10.0 178 9/28/2023
2.9.0 186 9/28/2023
2.8.23 188 9/26/2023
2.8.12 197 9/24/2023
2.8.4 169 9/24/2023
2.8.0 184 9/24/2023
2.7.10 174 9/23/2023
2.7.6 180 9/22/2023
2.6.0 171 9/19/2023
2.5.11 193 9/16/2023
2.5.5 183 9/14/2023
2.5.2 201 9/14/2023
2.5.0 183 9/14/2023
2.4.0 190 9/12/2023
2.3.2 206 9/11/2023
2.3.0 212 9/11/2023
2.2.0 223 9/11/2023
2.0.8 214 9/7/2023
2.0.5 186 9/6/2023
2.0.0 215 9/6/2023
1.9.38 203 9/5/2023
1.9.36 191 9/5/2023
1.9.35 195 9/4/2023
1.9.31 178 9/4/2023
1.9.28 185 9/4/2023
1.9.22 204 9/3/2023
1.9.17 175 9/3/2023
1.9.15 200 9/3/2023
1.9.8 196 9/1/2023
1.9.6 215 9/1/2023
1.9.4 229 9/1/2023
1.9.1 233 8/31/2023
1.8.22 231 8/29/2023
1.8.18 214 8/29/2023
1.8.8 245 8/24/2023
1.8.6 219 8/24/2023
1.7.0 227 8/22/2023
1.6.3 244 8/17/2023
1.6.2 216 8/17/2023
1.6.1 268 8/17/2023
1.6.0 246 8/17/2023
1.5.5 218 8/15/2023
1.5.0 221 8/14/2023
1.4.34 240 8/11/2023
1.4.33 234 8/11/2023
1.4.31 247 8/11/2023
1.4.29 251 8/10/2023
1.4.22 238 8/10/2023
1.4.21 245 8/10/2023
1.4.20 237 8/10/2023
1.4.18 257 8/7/2023
1.4.17 239 8/7/2023
1.4.15 235 8/7/2023
1.4.14 252 8/2/2023
1.4.12 246 8/2/2023
1.4.11 232 7/19/2023
1.4.10 235 7/19/2023
1.4.9 239 7/18/2023
1.4.8 232 7/18/2023
1.4.6 240 7/13/2023
1.4.5 231 7/11/2023
1.4.4 226 7/10/2023
1.4.3 221 7/10/2023
1.4.2 253 7/7/2023
1.4.1 239 7/6/2023
1.4.0 240 7/6/2023
1.3.17 255 7/5/2023
1.3.15 258 7/5/2023
1.3.14 226 7/5/2023
1.3.13 246 7/5/2023
1.3.12 248 6/30/2023
1.3.11 251 6/30/2023
1.3.8 230 6/30/2023
1.3.7 238 6/30/2023
1.3.6 239 6/30/2023
1.3.5 232 6/30/2023
1.3.4 231 6/30/2023
1.3.3 244 6/29/2023
1.3.2 232 6/29/2023
1.3.1 247 6/29/2023
1.3.0 216 6/29/2023
1.2.0 231 6/29/2023
1.1.0 221 6/29/2023
1.0.1 217 6/29/2023
0.3.26 246 6/29/2023
0.2.0 248 6/29/2023
0.1.1-initial-2-0027 210 6/8/2023
0.1.1-initial-2-0025 217 6/8/2023
0.1.1-initial-2-0024 186 6/8/2023
0.1.0 269 6/28/2023
0.1.0-initial-2-19 192 6/8/2023
0.1.0-initial-2-17 161 6/8/2023
0.1.0-initial-2-16 197 6/8/2023
0.1.0-initial-2-0023 192 6/8/2023
0.0.1-alpha03 228 5/29/2023
0.0.1-alpha02 193 5/28/2023
0.0.1-alpha01 209 5/28/2023