PowerShellDataFile.psd1
@{ RootModule = 'PowerShellDataFile.psm1' ModuleVersion = '0.0.1' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = 'ff13c400-79bb-476f-a9de-8e444ed22ffe' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module for base functions...' PowerShellVersion = '7.4' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = 'Set-PSModuleTest' CmdletsToExport = @() ModuleList = @() FileList = 'PowerShellDataFile.psm1' PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/PowerShellDataFile/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/PowerShellDataFile' IconUri = 'https://raw.githubusercontent.com/PSModule/PowerShellDataFile/main/icon/icon.png' } } } |