PowerShellDataFile.psd1
@{ RootModule = 'PowerShellDataFile.psm1' ModuleVersion = '0.0.3' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '2b474841-7d1f-4c63-b576-b8dde201f237' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2025 PSModule. All rights reserved.' Description = 'A PowerShell module for base functions...' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' TypesToProcess = @() FormatsToProcess = @() FunctionsToExport = @( 'Set-PSModuleTest' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() 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' } } } |