Yaml.psd1
@{ RootModule = 'Yaml.psm1' ModuleVersion = '0.0.1' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '5ae2c90f-2704-4c0f-a241-29731f3b1664' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module for working with Yaml.' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' RequiredModules = @( 'Utilities' ) TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = 'Get-PSModuleTest' CmdletsToExport = @() VariablesToExport = @() ModuleList = @() FileList = 'Yaml.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/Yaml/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/Yaml' IconUri = 'https://raw.githubusercontent.com/PSModule/Yaml/main/icon/icon.png' } } } |