DellBIOSProivder.psd1

@{
    RootModule        = 'DellBIOSProivder.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = '02e15a88-acd9-4284-85c1-a938e1fe4504'
    Author            = 'Cameron Hayes'
    CompanyName       = 'Cameron Hayes'
    Copyright         = '(c) Cameron Hayes. All rights reserved.'
    Description       = 'Neat management tools'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-DellBIOSProivderStatus', 'Initialize-DellBIOSProivder')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}