UniversalToolbox.psd1

@{
    # Script module or binary module file associated with this manifest.
    RootModule = 'UniversalToolbox.psm1'
    
    # Version number of this module.
    ModuleVersion = '1.0.0'
    
    # ID used to uniquely identify this module.
    GUID = '9dd0b797-a3dd-41ad-bf51-4e6b936e4e85'
    
    # Author of this module.
    Author = 'lingyf'
    
    # Copyright statement for this module.
    Copyright = '(c) 2020 lingyf. All rights reserved.'
    
    # Description of the functionality provided by this module.
    Description = 'A set of PowerShell universal tools.'
    
    # Minimum version of the Windows PowerShell engine required by this module.
    PowerShellVersion = '5.1'
    
    # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
    FunctionsToExport = @(
        'New-Password'
        'Export-SecureString'
        'Import-SecureString'
    )
    
    # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
    CmdletsToExport = @()
    
    # Variables to export from this module.
    VariablesToExport = @()
    
    # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
    AliasesToExport = @()
}