Plumber.psd1

@{
    RootModule           = 'Plumber.psm1'
    ModuleVersion        = '0.0.81'
    GUID                 = '03d665a4-c447-470b-acfc-ee7195c019e0'
    PowerShellVersion    = '7.0'
    CompatiblePSEditions = @('Core')
    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'
        'Install-PlumberDependency'
        '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'
        }
    }
}