SqlManagement.psd1

@{
    RootModule        = 'SqlManagement.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'e1f6e4c6-4c01-4a0f-ae64-575bed0c84c5'
    Author            = 'Cameron Brooks'
    CompanyName       = 'Cameron Brooks'
    Copyright         = '(c) Cameron Brooks. All rights reserved.'
    Description       = 'Portable module'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-SqlManagementStatus', 'Initialize-SqlManagement')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}