-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathISEAddonMenu.cmdlets.psd1
More file actions
43 lines (37 loc) · 2.63 KB
/
ISEAddonMenu.cmdlets.psd1
File metadata and controls
43 lines (37 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@{
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')
}