Retry.psd1
@{ RootModule = 'Retry.psm1' ModuleVersion = '0.1.4' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '6055c6e2-9a23-4d7d-8a10-ad0ce6d37d9f' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module to create a retry mechanism around functions' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = 'Invoke-Retry' CmdletsToExport = @() AliasesToExport = @( 'Retry' ) ModuleList = @() FileList = 'Retry.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Retry/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Retry' IconUri = 'https://raw.githubusercontent.com/PSModule/Retry/main/icon/icon.png' } } } |