AST.psd1
@{ RootModule = 'AST.psm1' ModuleVersion = '0.0.3' CompatiblePSEditions = @( 'Core' 'Desktop' ) GUID = '34c6d5d6-2532-4b01-b26d-e3458fed04d1' Author = 'PSModule' CompanyName = 'PSModule' Copyright = '(c) 2024 PSModule. All rights reserved.' Description = 'A PowerShell module for using the Abstract Syntax Tree (AST) to analyze any PowerShell code.' PowerShellVersion = '5.1' ProcessorArchitecture = 'None' RequiredAssemblies = 'assemblies/LsonLib.dll' ScriptsToProcess = 'scripts/loader.ps1' TypesToProcess = @( 'types/DirectoryInfo.Types.ps1xml' 'types/FileInfo.Types.ps1xml' ) FormatsToProcess = @( 'formats/CultureInfo.Format.ps1xml' 'formats/Mygciview.Format.ps1xml' ) NestedModules = @( 'modules/OtherPSModule.psm1' ) FunctionsToExport = @( 'Get-PSModuleTemplate' 'New-PSModuleTemplate' 'Set-PSModuleTemplate' 'Test-PSModuleTemplate' ) CmdletsToExport = @() VariablesToExport = @() ModuleList = @( 'modules/OtherPSModule.psm1' ) FileList = @() PrivateData = @{ PSData = @{ Tags = @( 'Linux' 'MacOS' 'PSEdition_Core' 'PSEdition_Desktop' 'Windows' ) LicenseUri = 'https://github.com/PSModule/AST/blob/main/LICENSE' ProjectUri = 'https://github.com/PSModule/AST' IconUri = 'https://raw.githubusercontent.com/PSModule/AST/main/icon/icon.png' } } } |