Plumber.psd1

@{
    RootModule    = 'Plumber.psm1'
    ModuleVersion = '0.0.23'
    GUID          = '03d665a4-c447-470b-acfc-ee7195c019e0'
    Author        = 'WillCodeForPizza'
    CompanyName   = 'WillCodeForPizza'
    Copyright     = '(c) 2025 WillCodeForPizza. All rights reserved.'
    Description   = 'A set of Invoke-Build tasks for Powershell validation pipelines'
    FunctionsToExport = @(
        'Get-PlumberTaskLoader'
        'Invoke-Plumber'
    )
    PrivateData = @{
        PSData = @{
            Tags = @('Validation', 'Pipeline', 'Invoke-Build')
            LicenseUri = 'https://github.com/willcodeforpizza/Plumber/blob/main/LICENSE'
            ProjectUri = 'https://github.com/willcodeforpizza/Plumber'
            ReleaseNotes = 'https://github.com/willcodeforpizza/Plumber/blob/main/changelog.md'
        }
    }
}