AzurePowerShell.psd1

@{
    RootModule        = 'AzurePowerShell.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '71876ed8-5a5d-4a5d-a0f2-9b1b880e9b58'
    Author            = 'Drew Bennett'
    CompanyName       = 'Drew Bennett'
    Copyright         = '(c) Drew Bennett. All rights reserved.'
    Description       = 'Fast module'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-AzurePowerShellStatus', 'Initialize-AzurePowerShell')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}