CICD.psd1

@{
    RootModule = 'CICD.psm1'
    ModuleVersion = '0.1.23.24'
    GUID = 'd859a6ea-28c9-425e-8678-5e1fecae01b4'
    Author = 'Nicholas Dille'
    # CompanyName = ''
    Copyright = '(c) 2017 Nicholas Dille. All rights reserved.'
    Description = 'CI/CD helpers for PowerShell modules'
    PowerShellVersion = '5.0'
    FunctionsToExport = @(
        'Get-GitHubRelease'
        'New-GitHubRelease'
        'Remove-GitHubRelease'
        'Get-GitHubReleaseAsset'
        'New-GitHubReleaseAsset'
        'Remove-GitHubReleaseAsset'
        'New-CoverageReportFromPester'
        'Get-CodeCoverageMetric'
    )
    #CmdletsToExport = '*'
    #VariablesToExport = ''
    #AliasesToExport = '*'
    #FormatsToProcess = ''
    #RequiredModules = ''
    PrivateData = @{
        PSData = @{
            Tags = @()
            LicenseUri = 'https://github.com/nicholasdille/PowerShell-CICD/blob/master/LICENSE'
            ProjectUri = 'https://github.com/nicholasdille/PowerShell-CICD'
            ReleaseNotes = 'https://github.com/nicholasdille/PowerShell-CICD/releases'
        }
    }
}