ModularPipelines.Git 1.9.31

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package ModularPipelines.Git --version 1.9.31
                    
NuGet\Install-Package ModularPipelines.Git -Version 1.9.31
                    
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.Git" Version="1.9.31" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularPipelines.Git" Version="1.9.31" />
                    
Directory.Packages.props
<PackageReference Include="ModularPipelines.Git" />
                    
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.Git --version 1.9.31
                    
#r "nuget: ModularPipelines.Git, 1.9.31"
                    
#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.
#:package ModularPipelines.Git@1.9.31
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ModularPipelines.Git&version=1.9.31
                    
Install as a Cake Addin
#tool nuget:?package=ModularPipelines.Git&version=1.9.31
                    
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.Git:

Package Downloads
ModularPipelines.GitHub

Helpers for interacting with GitHub Actions build agents.

GitHub repositories (2)

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

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.48.30 2,254 11/2/2025
2.48.29 174 11/2/2025
2.48.8 431 10/30/2025
2.48.6 208 10/30/2025
2.48.1 270 10/29/2025
2.47.8 9,828 8/10/2025
2.47.0 703 8/9/2025
2.46.1 461 8/8/2025
2.44.121 1,645 7/30/2025
2.44.45 3,643 5/25/2025
2.44.44 846 5/19/2025
2.43.0 11,397 2/24/2025
2.42.319 1,537 2/18/2025
2.42.246 6,921 1/19/2025
2.42.228 1,912 1/10/2025
2.42.226 275 1/9/2025
2.42.140 3,608 12/1/2024
2.42.134 456 11/30/2024
2.42.132 209 11/30/2024
2.42.115 12,824 11/17/2024
2.42.87 2,108 10/28/2024
2.42.67 4,076 9/29/2024
2.42.59 1,470 9/19/2024
2.42.54 278 9/19/2024
2.42.53 203 9/19/2024
2.42.47 1,097 9/13/2024
2.42.45 7,034 9/12/2024
2.42.9 1,996 9/5/2024
2.42.8 566 9/4/2024
2.42.0 248 9/4/2024
2.41.4 292 9/3/2024
2.41.0 370 9/3/2024
2.40.18 277 9/2/2024
2.40.15 209 9/2/2024
2.40.10 272 9/2/2024
2.40.8 202 9/2/2024
2.40.4 1,672 8/29/2024
2.40.1 304 8/28/2024
2.38.36 338 8/26/2024
2.38.25 876 8/12/2024
2.38.2 866 7/27/2024
2.38.1 193 7/27/2024
2.37.9 428 7/14/2024
2.37.1 188 7/14/2024
2.36.29 716 7/5/2024
2.36.23 538 6/30/2024
2.36.4 1,133 6/7/2024
2.35.0 345 6/2/2024
2.34.0 398 5/23/2024
2.33.0 575 5/20/2024
2.32.0 294 5/17/2024
2.31.3 1,301 4/15/2024
2.31.0 221 4/15/2024
2.30.9 469 3/27/2024
2.30.5 227 3/26/2024
2.30.3 207 3/26/2024
2.29.32 250 3/26/2024
2.29.22 537 3/8/2024
2.29.15 312 3/1/2024
2.29.11 249 2/27/2024
2.29.9 383 2/26/2024
2.29.0 207 2/25/2024
2.28.0 243 2/23/2024
2.27.12 391 2/15/2024
2.27.9 217 2/14/2024
2.27.3 372 2/8/2024
2.27.0 173 2/8/2024
2.26.8 368 2/4/2024
2.26.0 463 1/29/2024
2.25.0 215 1/28/2024
2.24.9 309 1/25/2024
2.24.4 181 1/25/2024
2.24.1 261 1/22/2024
2.22.0 225 1/18/2024
2.21.12 214 1/18/2024
2.21.9 225 1/18/2024
2.21.4 236 1/13/2024
2.21.0 183 1/12/2024
2.20.2 239 1/11/2024
2.19.2 362 12/27/2023
2.19.0 207 12/26/2023
2.18.8 190 12/26/2023
2.18.0 291 12/24/2023
2.17.25 249 12/22/2023
2.17.20 396 12/5/2023
2.17.0 347 11/24/2023
2.16.2 177 11/23/2023
2.16.0 201 11/23/2023
2.15.24 195 11/22/2023
2.15.21 195 11/22/2023
2.15.17 191 11/20/2023
2.15.3 243 11/9/2023
2.15.0 164 11/8/2023
2.14.9 242 11/6/2023
2.14.7 193 11/6/2023
2.14.1 182 11/6/2023
2.13.63 222 10/29/2023
2.13.47 276 10/20/2023
2.13.8 210 10/13/2023
2.13.5 180 10/13/2023
2.12.15 193 10/10/2023
2.12.11 237 10/10/2023
2.12.5 197 10/6/2023
2.12.1 219 10/4/2023
2.11.12 220 10/1/2023
2.11.11 188 9/30/2023
2.11.9 210 9/30/2023
2.11.4 237 9/30/2023
2.11.0 241 9/29/2023
2.10.6 301 9/29/2023
2.10.0 192 9/28/2023
2.9.0 181 9/28/2023
2.8.23 182 9/26/2023
2.8.12 209 9/24/2023
2.8.4 190 9/24/2023
2.8.0 180 9/24/2023
2.7.10 205 9/23/2023
2.7.6 203 9/22/2023
2.6.0 243 9/19/2023
2.5.11 217 9/16/2023
2.5.5 222 9/14/2023
2.5.2 215 9/14/2023
2.5.0 182 9/14/2023
2.4.0 199 9/12/2023
2.3.2 219 9/11/2023
2.3.0 237 9/11/2023
2.2.0 230 9/11/2023
2.0.8 222 9/7/2023
2.0.5 199 9/6/2023
2.0.0 236 9/6/2023
1.9.38 213 9/5/2023
1.9.36 212 9/5/2023
1.9.35 228 9/4/2023
1.9.31 214 9/4/2023
1.9.28 237 9/4/2023
1.9.22 231 9/3/2023
1.9.17 209 9/3/2023
1.9.15 227 9/3/2023
1.9.8 212 9/1/2023
1.9.6 226 9/1/2023
1.9.4 228 9/1/2023
1.9.1 239 8/31/2023
1.8.22 253 8/29/2023
1.8.18 227 8/29/2023
1.8.8 244 8/24/2023
1.8.6 206 8/24/2023
1.7.0 227 8/22/2023
1.6.3 236 8/17/2023
1.6.2 242 8/17/2023
1.6.1 265 8/17/2023
1.6.0 252 8/17/2023
1.5.5 278 8/15/2023
1.5.0 272 8/14/2023
1.4.34 255 8/11/2023
1.4.33 237 8/11/2023
1.4.31 255 8/11/2023
1.4.29 261 8/10/2023
1.4.22 232 8/10/2023
1.4.21 304 8/10/2023
1.4.20 258 8/10/2023
1.4.18 255 8/7/2023
1.4.17 254 8/7/2023
1.4.15 261 8/7/2023
1.4.14 271 8/2/2023
1.4.12 260 8/2/2023
1.4.11 264 7/19/2023
1.4.10 285 7/19/2023
1.4.9 249 7/18/2023
1.4.8 251 7/18/2023
1.4.6 268 7/13/2023
1.4.5 245 7/11/2023
1.4.4 262 7/10/2023
1.4.3 276 7/10/2023
1.4.2 282 7/7/2023
1.4.1 304 7/6/2023
1.4.0 253 7/6/2023
1.3.17 254 7/5/2023
1.3.15 270 7/5/2023
1.3.14 282 7/5/2023
1.3.13 246 7/5/2023
1.3.12 288 6/30/2023
1.3.11 277 6/30/2023
1.3.8 268 6/30/2023
1.3.7 256 6/30/2023
1.3.6 265 6/30/2023
1.3.5 267 6/30/2023
1.3.4 285 6/30/2023
1.3.3 285 6/29/2023
1.3.2 261 6/29/2023
1.3.1 260 6/29/2023
1.3.0 259 6/29/2023
1.2.0 251 6/29/2023
1.1.0 241 6/29/2023
1.0.1 293 6/29/2023
0.3.26 295 6/29/2023
0.2.0 274 6/29/2023
0.1.1-initial-2-0027 231 6/8/2023
0.1.1-initial-2-0025 251 6/8/2023
0.1.1-initial-2-0024 253 6/8/2023
0.1.0 283 6/28/2023
0.1.0-initial-2-19 222 6/8/2023
0.1.0-initial-2-0023 251 6/8/2023
0.1.0-initial-2.1 72 6/8/2023
0.0.1-alpha03 240 5/29/2023
0.0.1-alpha02 223 5/28/2023
0.0.1-alpha01 247 5/28/2023