Retry.psd1
@{ RootModule = 'Retry.psm1' ModuleVersion = '0.1.3' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '4c7eb6f6-4e69-40a7-856d-83fe548567d1' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module to create a retry mechanism around functions' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredAssemblies = @() ScriptsToProcess = @() TypesToProcess = @() FormatsToProcess = @() NestedModules = @() 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' } } } |