powerbox.psm1
Import-LocalizedData -BindingVariable Strings -FileName Strings -ErrorAction Ignore # Include all function files. (not including $PSScriptRoot\Private\*.ps1 because those are used to build the module) Get-ChildItem $PSScriptRoot\Public\*.ps1 | ForEach-Object { . $PSItem.FullName } # Export only the functions using PowerShell standard verb-noun naming. # Be sure to list each exported functions in the FunctionsToExport field of the module manifest file. # This improves performance of command discovery in PowerShell. Export-ModuleMember -Function *-* |