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

// Install ModularPipelines.Git as a Cake Tool
#tool nuget:?package=ModularPipelines.Git&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 (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.42.59 1,063 9/19/2024
2.42.54 158 9/19/2024
2.42.53 97 9/19/2024
2.42.47 963 9/13/2024
2.42.45 2,045 9/12/2024
2.42.9 1,299 9/5/2024
2.42.8 458 9/4/2024
2.42.0 135 9/4/2024
2.41.4 152 9/3/2024
2.41.0 254 9/3/2024
2.40.18 168 9/2/2024
2.40.15 92 9/2/2024
2.40.10 165 9/2/2024
2.40.8 96 9/2/2024
2.40.4 1,557 8/29/2024
2.40.1 188 8/28/2024
2.38.36 224 8/26/2024
2.38.25 762 8/12/2024
2.38.2 738 7/27/2024
2.38.1 90 7/27/2024
2.37.9 321 7/14/2024
2.37.1 96 7/14/2024
2.36.29 586 7/5/2024
2.36.23 427 6/30/2024
2.36.4 1,020 6/7/2024
2.35.0 252 6/2/2024
2.34.0 275 5/23/2024
2.33.0 482 5/20/2024
2.32.0 181 5/17/2024
2.31.3 885 4/15/2024
2.31.0 113 4/15/2024
2.30.9 349 3/27/2024
2.30.5 112 3/26/2024
2.30.3 114 3/26/2024
2.29.32 137 3/26/2024
2.29.22 421 3/8/2024
2.29.15 209 3/1/2024
2.29.11 174 2/27/2024
2.29.9 274 2/26/2024
2.29.0 132 2/25/2024
2.28.0 135 2/23/2024
2.27.12 313 2/15/2024
2.27.9 147 2/14/2024
2.27.3 299 2/8/2024
2.27.0 106 2/8/2024
2.26.8 269 2/4/2024
2.26.0 360 1/29/2024
2.25.0 140 1/28/2024
2.24.9 234 1/25/2024
2.24.4 106 1/25/2024
2.24.1 174 1/22/2024
2.22.0 121 1/18/2024
2.21.12 138 1/18/2024
2.21.9 121 1/18/2024
2.21.4 165 1/13/2024
2.21.0 95 1/12/2024
2.20.2 159 1/11/2024
2.19.2 273 12/27/2023
2.19.0 145 12/26/2023
2.18.8 107 12/26/2023
2.18.0 219 12/24/2023
2.17.25 163 12/22/2023
2.17.20 341 12/5/2023
2.17.0 294 11/24/2023
2.16.2 129 11/23/2023
2.16.0 146 11/23/2023
2.15.24 151 11/22/2023
2.15.21 126 11/22/2023
2.15.17 138 11/20/2023
2.15.3 182 11/9/2023
2.15.0 95 11/8/2023
2.14.9 186 11/6/2023
2.14.7 134 11/6/2023
2.14.1 131 11/6/2023
2.13.63 164 10/29/2023
2.13.47 211 10/20/2023
2.13.8 153 10/13/2023
2.13.5 125 10/13/2023
2.12.15 134 10/10/2023
2.12.11 163 10/10/2023
2.12.5 136 10/6/2023
2.12.1 149 10/4/2023
2.11.12 150 10/1/2023
2.11.11 122 9/30/2023
2.11.9 146 9/30/2023
2.11.4 141 9/30/2023
2.11.0 166 9/29/2023
2.10.6 234 9/29/2023
2.10.0 132 9/28/2023
2.9.0 122 9/28/2023
2.8.23 134 9/26/2023
2.8.12 139 9/24/2023
2.8.4 130 9/24/2023
2.8.0 130 9/24/2023
2.7.10 131 9/23/2023
2.7.6 139 9/22/2023
2.6.0 144 9/19/2023
2.5.11 141 9/16/2023
2.5.5 152 9/14/2023
2.5.2 152 9/14/2023
2.5.0 124 9/14/2023
2.4.0 133 9/12/2023
2.3.2 156 9/11/2023
2.3.0 143 9/11/2023
2.2.0 158 9/11/2023
2.0.8 149 9/7/2023
2.0.5 127 9/6/2023
2.0.0 136 9/6/2023
1.9.38 140 9/5/2023
1.9.36 123 9/5/2023
1.9.35 136 9/4/2023
1.9.31 141 9/4/2023
1.9.28 140 9/4/2023
1.9.22 139 9/3/2023
1.9.17 135 9/3/2023
1.9.15 127 9/3/2023
1.9.8 137 9/1/2023
1.9.6 156 9/1/2023
1.9.4 153 9/1/2023
1.9.1 158 8/31/2023
1.8.22 178 8/29/2023
1.8.18 138 8/29/2023
1.8.8 139 8/24/2023
1.8.6 137 8/24/2023
1.7.0 148 8/22/2023
1.6.3 158 8/17/2023
1.6.2 144 8/17/2023
1.6.1 185 8/17/2023
1.6.0 165 8/17/2023
1.5.5 175 8/15/2023
1.5.0 166 8/14/2023
1.4.34 173 8/11/2023
1.4.33 150 8/11/2023
1.4.31 179 8/11/2023
1.4.29 155 8/10/2023
1.4.22 161 8/10/2023
1.4.21 207 8/10/2023
1.4.20 173 8/10/2023
1.4.18 172 8/7/2023
1.4.17 170 8/7/2023
1.4.15 174 8/7/2023
1.4.14 183 8/2/2023
1.4.12 178 8/2/2023
1.4.11 177 7/19/2023
1.4.10 181 7/19/2023
1.4.9 167 7/18/2023
1.4.8 169 7/18/2023
1.4.6 179 7/13/2023
1.4.5 158 7/11/2023
1.4.4 171 7/10/2023
1.4.3 162 7/10/2023
1.4.2 178 7/7/2023
1.4.1 193 7/6/2023
1.4.0 165 7/6/2023
1.3.17 176 7/5/2023
1.3.15 176 7/5/2023
1.3.14 169 7/5/2023
1.3.13 162 7/5/2023
1.3.12 174 6/30/2023
1.3.11 187 6/30/2023
1.3.8 181 6/30/2023
1.3.7 177 6/30/2023
1.3.6 173 6/30/2023
1.3.5 150 6/30/2023
1.3.4 173 6/30/2023
1.3.3 176 6/29/2023
1.3.2 171 6/29/2023
1.3.1 164 6/29/2023
1.3.0 170 6/29/2023
1.2.0 161 6/29/2023
1.1.0 164 6/29/2023
1.0.1 176 6/29/2023
0.3.26 178 6/29/2023
0.2.0 159 6/29/2023
0.1.1-initial-2-0027 141 6/8/2023
0.1.1-initial-2-0025 139 6/8/2023
0.1.1-initial-2-0024 136 6/8/2023
0.1.0 177 6/28/2023
0.1.0-initial-2-19 137 6/8/2023
0.1.0-initial-2-0023 138 6/8/2023
0.1.0-initial-2.1 52 6/8/2023
0.0.1-alpha03 137 5/29/2023
0.0.1-alpha02 128 5/28/2023
0.0.1-alpha01 132 5/28/2023