PSQueue.psd1
# # Module manifest for module 'PSQueue' # # Generated by: Hannes Palmquist # # Generated on: 2022-11-14 # @{ RootModule = 'PSQueue.psm1' ModuleVersion = '1.4.4' CompatiblePSEditions = @('Desktop', 'Core') PowerShellVersion = '5.1' GUID = 'ba821fed-a721-459e-825b-1c87090f36ea' Author = 'Hannes Palmquist' CompanyName = 'GetPS' Copyright = '(c) Hannes Palmquist. All rights reserved.' Description = 'Provides tools to work with system.collections.queue arrays' RequiredModules = @() FunctionsToExport = @('Add-QueueItem','Clear-AllQueueItems','Get-AllQueueItems','Get-NextQueueItem','Initialize-Queue','Measure-Queue','Show-NextQueueItem') CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' PrivateData = @{ PSData = @{ # Due to a bug in PowershellGet 3.0.17-beta17 licenseuri cannot used when Publishing. # Rollback to 3.0.17-beta16 has a bug that does not allow publishing of versioned powershell modules. # These three must be commented until 3.0.17-beta18 is released. #LicenseUri = 'https://github.com/hanpq/PSQueue/blob/main/LICENSE' #RequireLicenseAcceptance = $false Prerelease = 'preview0001' Tags = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS') ProjectUri = 'https://getps.dev/modules/PSQueue/getstarted' ReleaseNotes = '' } } } |