-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPSFunctionTools.psd1
86 lines (81 loc) · 2.81 KB
/
PSFunctionTools.psd1
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#
# Module manifest for module PSFunctionTools
#
@{
RootModule = 'PSFunctionTools.psm1'
ModuleVersion = '1.3.0'
CompatiblePSEditions = 'Core'
GUID = '151466e0-a952-4b6a-ad81-40dafc9ef9bb'
Author = 'Jeff Hicks'
CompanyName = 'JDH Information Technology Solutions, Inc.'
Copyright = '(c) 2021-2025 JDH Information Technology Solutions, Inc.'
Description = 'A set of PowerShell 7 commands for managing and automating PowerShell scripts, functions, and modules. You can use these tools to accelerate PowerShell script development.'
PowerShellVersion = '7.4'
# TypesToProcess = @()
FormatsToProcess = @(
'formats\modulelayout.format.ps1xml',
'formats\psscriptrequirements.format.ps1xml',
'formats\psfunctionname.format.ps1xml',
'formats\psfunctiontool.format.ps1xml'
)
FunctionsToExport = @(
'Convert-ScriptToFunction',
'Export-FunctionFromFile',
'Export-FunctionToFile',
'Export-ModuleLayout',
'Format-FunctionName',
'Get-FunctionAlias',
'Get-FunctionAttribute',
'Get-FunctionName',
'Get-FunctionProfile',
'Get-ModuleLayout',
'Get-ParameterBlock',
'Get-PSFunctionTools',
'Get-PSRequirements',
'Import-ModuleLayout',
'New-CommentHelp',
'New-ModuleFromFiles',
'New-ModuleFromLayout',
'Open-PSFunctionToolsHelp',
'Open-PSFunctionToolsSamples',
'Test-FunctionName'
)
CmdletsToExport = @()
# VariablesToExport = @()
AliasesToExport = @(
'csf',
'eff',
'eml',
'etf',
'ffn',
'ga',
'gfa',
'gfal',
'gfn',
'gfp',
'gpb',
'iml',
'nch',
'tfn'
)
PrivateData = @{
PSData = @{
Tags = @('AST', 'scripting', 'module', 'function', 'script', 'toolmaking')
LicenseUri = 'https://github.com/jdhitsolutions/PSFunctionTools/blob/main/License.txt'
ProjectUri = 'https://github.com/jdhitsolutions/PSFunctionTools'
IconUri = 'https://raw.githubusercontent.com/jdhitsolutions/PSFunctionTools/main/images/psrobot.png'
ReleaseNotes = @'
## [1.3.0] - 2025-01-14
### Added
- Added command `Open-PSFunctionToolsSamples` to change to the Samples folder and list the sample files.
- Added command `Open-PSFunctionToolsHelp`.
### Changed
- Updated demo file `Demo-NewModuleFromFiles.ps1`.
- Help documentation updates.
- Minor code cleanup.
- Bumped minimum PowerShell version to 7.4. __This is a potential breaking change.__
- Converted changelog to new format.
'@
} # End of PSData hashtable
} # End of PrivateData hashtable
}