PSSort.psd1
# # Module manifest for module 'PSSort' # # Generated by: Hannes Palmquist # # Generated on: 2022-11-13 # @{ RootModule = 'PSSort.psm1' ModuleVersion = '1.10.4' CompatiblePSEditions = @('Desktop', 'Core') PowerShellVersion = '5.1' GUID = '1a7ca65e-3fe2-4f51-a8d5-5d8990fd2d76' Author = 'Hannes Palmquist' CompanyName = 'GetPS' Copyright = '(c) Hannes Palmquist. All rights reserved.' Description = 'asd' RequiredModules = @() FunctionsToExport = @('Test-SortingAlgorithms','Use-BubbleSort','Use-QuickSort') CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' PrivateData = @{ PSData = @{ Prerelease = 'preview0001' Tags = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS') LicenseUri = 'https://github.com/hanpq/PSSort/blob/main/LICENSE' ProjectUri = 'https://getps.dev/modules/PSSort/getstarted' IconUri = '' ReleaseNotes = '## [1.10.4-preview0001] - 2022-11-14 ### Added - Added parameter ReturnDiagnostic on sort functions. This switch will make the returned object contain information about the sorting operation performed. The sorted array will be included as an parameter of that object. ' RequireLicenseAcceptance = $false } } } |