PSCustomObject.psd1
@{ RootModule = 'PSCustomObject.psm1' ModuleVersion = '0.0.1' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'd8e85ecb-bdb1-42e6-8f84-705af4dfab62' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module for missing functions of PSCustomObjects.' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredModules = @( 'Utilities' ) TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = 'Get-PSModuleTest' CmdletsToExport = @() VariablesToExport = @() ModuleList = @() FileList = 'PSCustomObject.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/PSCustomObject/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/PSCustomObject' IconUri = 'https://raw.githubusercontent.com/PSModule/PSCustomObject/main/icon/icon.png' } } } |