PSWindowsUpade.psd1

@{
    RootModule        = 'PSWindowsUpade.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'fa27adc0-6845-470f-964b-cd48de285efb'
    Author            = 'Jordan Murphy'
    CompanyName       = 'Jordan Murphy'
    Copyright         = '(c) Jordan Murphy. All rights reserved.'
    Description       = 'Modern system utilities'
    PowerShellVersion = '5.1'
    FunctionsToExport = @('Get-PSWindowsUpadeStatus', 'Initialize-PSWindowsUpade')
    CmdletsToExport   = @()
    VariablesToExport  = @()
    AliasesToExport    = @()
    PrivateData = @{
        PSData = @{
            Tags = @('PSModule')
        }
    }
}