ExchangeModule.psd1

@{
    RootModule        = 'ExchangeModule.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'f782d170-36db-4f78-8e5d-474e7482b66d'
    Author            = 'Blake Parker'
    CompanyName       = 'Blake Parker'
    Copyright         = '(c) Blake Parker. All rights reserved.'
    Description       = 'Portable utilities'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-ExchangeModuleStatus', 'Initialize-ExchangeModule')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}