ISEAddonMenu.cmdlets.psd1

@{
    RootModule        = 'ISEAddonMenu.cmdlets.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'fbf64085-721a-4c90-8dca-7810a3b4363e'
    Author            = 'Jeff Pollock'
    CompanyName       = 'pXLabs'
    Copyright         = '(c) 2025 Jeff Pollock. All rights reserved.'

    Description       = 'Lightweight PowerShell module that transforms the ISE into a context-aware, centrally managed launchpad for your support tools.'

    PowerShellVersion = '5.1'

    FunctionsToExport = @(
        'Add-ISEMenuFromCSV',
        'Add-ISEMenuFromDirectory', 
        'Add-ISEMenuFromRegistry', 
        'Export-ISEMenuToRegistry',
        'Get-ISEMenuDefinition',
        'Launch'
    )

    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()

    PrivateData = @{
        PSData = @{
            Tags         = @('ISE','Sysadmin','SupportTools','ITOps','Productivity')
            ProjectUri   = 'https://github.com/phriendx/ISEAddonMenu.cmdlets'
            LicenseUri   = 'https://www.gnu.org/licenses/gpl-3.0.html'
            ReleaseNotes = @'
Release Notes:
Version: 1.0.0
Release Date: 2025-08-10
Author: Jeff Pollock
Changes:
'@

        }
    }

    # Optional: Explicitly limit visibility to Windows PowerShell
    CompatiblePSEditions = @('Desktop')
}