O365Extensions.psd1

@{
    NestedModules = "O365Extensions.psm1"
    ModuleVersion = "0.2.29"
    GUID = "b14ffd46-e383-4137-9ff7-9f078597fc0f"
    Author = "Matt McNabb"
    CompanyName = "Matt McNabb"
    Copyright = "(c) 2017 Matt McNabb. All rights reserved."
    Description = "A PowerShell module for easing the Office 365 administrative burden - Easily connect and disconnect from any Office 365 services | Intelligent parameter argument completion for objects in your Office 365 tenant"
    PowerShellVersion = "5.0"
    FunctionsToExport = "Connect-O365","Disconnect-O365"
    AliasesToExport = "O365"
    PrivateData = @{
        PSData = @{
            Tags = @("Office365","ArgumentCompleters")
            LicenseUri = "https://github.com/mattmcnabb/O365Extensions/blob/master/license"
            ProjectUri = "https://github.com/mattmcnabb/O365Extensions"
            ReleaseNotes = "First viable version - more features coming soon"
        }
    }
}