psDevOpsTool.psd1

@{
    RootModule      = '.\psDevOpsTool.dll'
    ModuleVersion   = '1.0.0'
    #CompatiblePSEditions = @('Desktop', 'Core')
    GUID            = '4eccf3cd-406e-4807-a98e-78f8c25d1d30'
    Author          = @(
        'Roberth Strand'
    )
    Copyright       = 'psDevOpsTool is licensed under the GNU General Public License v3.0'
    Description     = 'A PowerShell module designed to help those who work in DevOps. A one stop solution to all your tooling needs.'
    CmdletsToExport = @(
        # Generic
        'ConvertTo-Base64'
        'ConvertFrom-Base64'
    )
    AliasesToExport = @(
        # Generic
        'ctb64'
        'cfb64'
    )
    PrivateData     = @{
        PSData = @{
            Prerelease   = 'alpha3'
            Tags         = @(
                'DevOps'
            )
            ProjectUri   = 'https://github.com/roberthstrand/psDevOpsTool'
            ReleaseNotes = 'https://github.com/roberthstrand/psDevOpsTool/releases'
        }
    }
    HelpInfoURI     = 'https://roberthstrand.github.io/psDevOpsTool/'
}