forked from jdhitsolutions/PSFunctionTools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSFunctionTools-Tom.psd1
47 lines (43 loc) · 2.09 KB
/
PSFunctionTools-Tom.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
#
# Module manifest for module PSFunctionTools-Tom
#
@{
RootModule = 'PSFunctionTools-Tom.psm1'
ModuleVersion = '1.0.2'
CompatiblePSEditions = 'Core'
GUID = '2896522d-934d-481a-87a2-517582681ee4'
Author = 'Thomas Schittli'
CompanyName = ''
Copyright = '(c) TomTom'
Description = 'Based on Jeff Hicks PSFunctionTools 1.0.0. Patched by TomTom. A set of PowerShell commands for managing and automating PowerShell scripts, functions, and modules.'
PowerShellVersion = '7.1'
# TypesToProcess = @()
FormatsToProcess = @('formats\modulelayout.format.ps1xml',
'formats\psscriptrequirements.format.ps1xml',
'formats\psfunctionname.format.ps1xml',
'formats\psfunctiontool.format.ps1xml'
)
FunctionsToExport = @(
'Test-FunctionName', 'Get-FunctionName', 'Get-FunctionAlias',
'Export-FunctionFromFile', 'Export-ModuleLayout',
'Import-ModuleLayout', 'Convert-ScriptToFunction',
'Get-PSRequirements', 'New-CommentHelp', 'Format-FunctionName',
'Get-ModuleLayout', 'Get-ParameterBlock', 'Get-FunctionAttribute',
'Get-FunctionProfile', 'New-ModuleFromFiles', 'New-ModuleFromLayout',
'Get-PSFunctionTools-Tom','Export-FunctionToFile')
CmdletsToExport = @()
# VariablesToExport = @()
AliasesToExport = @('gfal', 'ga', 'eff', 'eml', 'iml', 'csf', 'gpb',
'gfa', 'nch', 'ffn', 'gfn', 'tfn', 'gfp','etf')
PrivateData = @{
PSData = @{
Tags = @('AST', 'scripting', 'module', 'function', 'script')
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 = ''
# Prerelease = ''
# ExternalModuleDependencies = @()
} # End of PSData hashtable
} # End of PrivateData hashtable
}