Hashtable.psd1
@{ RootModule = 'Hashtable.psm1' ModuleVersion = '1.1.5' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '5747938c-6475-4807-8554-751a62cd6375' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module that simplifies some interaction with Hashtables.' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'ConvertFrom-Hashtable' 'ConvertTo-HashTable' 'Export-Hashtable' 'Format-Hashtable' 'Import-Hashtable' 'Merge-Hashtable' 'Remove-HashtableEntry' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @( 'Join-Hashtable' ) ModuleList = @() FileList = 'Hashtable.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Windows' 'Linux' 'MacOS' 'PSEdition_Desktop' 'PSEdition_Core' ) LicenseUri = 'https://github.com/PSModule/Hashtable/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Hashtable' IconUri = 'https://raw.githubusercontent.com/PSModule/Hashtable/main/icon/icon.png' } } } |