ModularPipelines.Slack 2.3.2

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package ModularPipelines.Slack --version 2.3.2
                    
NuGet\Install-Package ModularPipelines.Slack -Version 2.3.2
                    
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.Slack" Version="2.3.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModularPipelines.Slack" Version="2.3.2" />
                    
Directory.Packages.props
<PackageReference Include="ModularPipelines.Slack" />
                    
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.Slack --version 2.3.2
                    
#r "nuget: ModularPipelines.Slack, 2.3.2"
                    
#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.Slack@2.3.2
                    
#: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.Slack&version=2.3.2
                    
Install as a Cake Addin
#tool nuget:?package=ModularPipelines.Slack&version=2.3.2
                    
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 Codacy Badge

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<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<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

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.48.30 110 11/2/2025
2.48.29 108 11/2/2025
2.48.8 169 10/30/2025
2.47.8 222 8/10/2025
2.47.0 142 8/9/2025
2.46.1 184 8/8/2025
2.44.121 166 7/30/2025
2.44.45 213 5/25/2025
2.44.44 194 5/19/2025
2.43.0 185 2/24/2025
2.42.319 149 2/18/2025
2.42.246 146 1/19/2025
2.42.228 181 1/10/2025
2.42.226 150 1/9/2025
2.42.140 155 12/1/2024
2.42.134 182 11/30/2024
2.42.132 159 11/30/2024
2.42.115 156 11/17/2024
2.42.87 189 10/28/2024
2.42.67 189 9/29/2024
2.42.59 176 9/19/2024
2.42.54 149 9/19/2024
2.42.53 153 9/19/2024
2.42.47 199 9/13/2024
2.42.45 166 9/12/2024
2.42.9 186 9/5/2024
2.42.8 178 9/4/2024
2.42.0 185 9/4/2024
2.41.4 154 9/3/2024
2.41.0 170 9/3/2024
2.40.18 207 9/2/2024
2.40.15 163 9/2/2024
2.40.10 205 9/2/2024
2.40.8 165 9/2/2024
2.40.4 198 8/29/2024
2.40.1 165 8/28/2024
2.38.36 195 8/26/2024
2.38.25 211 8/12/2024
2.38.2 140 7/27/2024
2.38.1 192 7/27/2024
2.37.9 157 7/14/2024
2.36.29 213 7/5/2024
2.36.23 194 6/30/2024
2.36.4 196 6/7/2024
2.35.0 192 6/2/2024
2.34.0 188 5/23/2024
2.33.0 161 5/20/2024
2.32.0 187 5/17/2024
2.31.3 212 4/15/2024
2.31.0 197 4/15/2024
2.30.9 224 3/27/2024
2.30.5 189 3/26/2024
2.30.3 157 3/26/2024
2.29.32 174 3/26/2024
2.29.22 181 3/8/2024
2.29.15 185 3/1/2024
2.29.11 171 2/27/2024
2.29.9 191 2/26/2024
2.29.0 203 2/25/2024
2.28.0 183 2/23/2024
2.27.12 177 2/15/2024
2.27.9 157 2/14/2024
2.27.3 195 2/8/2024
2.27.0 212 2/8/2024
2.26.8 192 2/4/2024
2.26.0 189 1/29/2024
2.25.0 166 1/28/2024
2.24.9 161 1/25/2024
2.24.4 162 1/25/2024
2.24.1 208 1/22/2024
2.22.0 216 1/18/2024
2.21.12 182 1/18/2024
2.21.9 174 1/18/2024
2.21.4 179 1/13/2024
2.21.0 162 1/12/2024
2.20.2 204 1/11/2024
2.19.2 206 12/27/2023
2.19.0 206 12/26/2023
2.18.8 193 12/26/2023
2.18.0 194 12/24/2023
2.17.25 186 12/22/2023
2.17.20 207 12/5/2023
2.17.0 216 11/24/2023
2.16.2 179 11/23/2023
2.16.0 172 11/23/2023
2.15.24 175 11/22/2023
2.15.21 179 11/22/2023
2.15.17 187 11/20/2023
2.15.3 165 11/9/2023
2.15.0 169 11/8/2023
2.14.9 170 11/6/2023
2.14.7 198 11/6/2023
2.14.1 204 11/6/2023
2.13.63 228 10/29/2023
2.13.47 206 10/20/2023
2.13.8 240 10/13/2023
2.13.5 195 10/13/2023
2.12.15 198 10/10/2023
2.12.11 210 10/10/2023
2.12.5 226 10/6/2023
2.12.1 219 10/4/2023
2.11.12 197 10/1/2023
2.11.11 217 9/30/2023
2.11.9 207 9/30/2023
2.11.4 198 9/30/2023
2.11.0 192 9/29/2023
2.10.6 201 9/29/2023
2.10.0 183 9/28/2023
2.9.0 173 9/28/2023
2.8.23 202 9/26/2023
2.8.12 219 9/24/2023
2.8.4 168 9/24/2023
2.8.0 204 9/24/2023
2.7.10 173 9/23/2023
2.7.6 187 9/22/2023
2.6.0 205 9/19/2023
2.5.11 193 9/16/2023
2.5.5 217 9/14/2023
2.5.2 206 9/14/2023
2.5.0 200 9/14/2023
2.4.0 204 9/12/2023
2.3.2 249 9/11/2023
2.3.0 224 9/11/2023
2.2.0 245 9/11/2023
2.0.8 241 9/7/2023
2.0.5 245 9/6/2023
2.0.0 242 9/6/2023
1.9.38 213 9/5/2023
1.9.36 211 9/5/2023