Guid.psd1
@{ RootModule = 'Guid.psm1' ModuleVersion = '1.0.2' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'b5ac6172-fca9-4baf-9152-846a3f25cb69' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module that makes working with GUID sligthly more PowerShelly' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Search-GUID' 'Test-Guid' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @( 'Find-Guid' 'IsGuid' 'Test-IsGuid' ) ModuleList = @() FileList = 'Guid.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Windows' 'Linux' 'MacOS' 'PSEdition_Desktop' 'PSEdition_Core' ) LicenseUri = 'https://github.com/PSModule/Guid/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Guid' IconUri = 'https://raw.githubusercontent.com/PSModule/Guid/main/icon/icon.png' } } } |