|
1 | 1 |
|
2 | 2 | @{ |
3 | 3 |
|
4 | | -# Script module or binary module file associated with this manifest. |
5 | | -RootModule = 'ISEScriptingGeek.psm1' |
| 4 | + RootModule = 'ISEScriptingGeek.psm1' |
| 5 | + ModuleVersion = '3.5.0' |
| 6 | + CompatiblePSEditions = @('Desktop') |
| 7 | + GUID = '6d1078ea-36c8-443a-9476-6d6c4d6ac834' |
| 8 | + Author = 'Jeff Hicks' |
| 9 | + CompanyName = 'JDH Information Technology Solutions, Inc.' |
| 10 | + Copyright = '2013-2023 JDH Information Technology Solutions, Inc. All Rights Reserved.' |
| 11 | + Description = 'Functions and add-ons for the Windows PowerShell ISE and later. This module is a kind of resource kit for the PowerShell ISE.' |
| 12 | + PowerShellVersion = '5.1' |
| 13 | + TypesToProcess = @() |
| 14 | + FormatsToProcess = @() |
| 15 | + FunctionsToExport = 'Add-CurrentProject', 'Add-ISEBookmark', 'CloseAllFiles', |
| 16 | + 'CloseAllFilesButCurrent', 'Convert-AliasDefinition', |
| 17 | + 'Convert-CodeToSnippet', 'Convert-CommandToHash', 'ConvertFrom-Alias', |
| 18 | + 'ConvertFrom-MultiLineComment', 'ConvertTo-CommentHelp', |
| 19 | + 'ConvertTo-Definition', 'ConvertTo-MultiLineComment', |
| 20 | + 'ConvertTo-TextFile', 'Copy-ToWord', 'Edit-CurrentProject', |
| 21 | + 'Edit-Snippet', 'Find-InFile', 'Get-ASTProfile', 'Get-CommandMetadata', |
| 22 | + 'Get-ISEBookmark', 'Get-NextISETab', 'Get-ScriptComments', |
| 23 | + 'Get-ScriptingHelp', 'Get-SearchResult', 'Import-CurrentProject', |
| 24 | + 'New-CIMCommand', 'New-CommentHelp', 'New-DSCResourceSnippet', |
| 25 | + 'New-FileHere', 'New-InputBox', 'New-PSCommand', |
| 26 | + 'Open-ISEBookmark', 'Open-SelectedISE', 'Out-ISETab', |
| 27 | + 'Remove-ISEBookmark', 'Reset-ISEFile', 'Send-ToPrinter', |
| 28 | + 'Start-MyScript', 'Update-ISEBookmark', 'Write-Signature', |
| 29 | + 'New-Function', 'Set-ScriptLocation' |
| 30 | + |
| 31 | + CmdletsToExport = @() |
| 32 | + VariablesToExport = 'MySnippets', 'MyModules', 'MyPowerShell', 'CurrentProjectList' |
| 33 | + AliasesToExport = 'ccs', 'gcmd', 'glcm''tab', 'sd' |
| 34 | + PrivateData = @{ |
| 35 | + PSData = @{ |
| 36 | + Tags = 'ISE', 'Snippets', 'Scripting', 'PowerShellISE' |
| 37 | + LicenseUri = 'https://github.com/jdhitsolutions/ISEScriptingGeek/blob/master/License.txt' |
| 38 | + ProjectUri = 'https://github.com/jdhitsolutions/ISEScriptingGeek' |
| 39 | + } # End of PSData hashtable |
| 40 | + |
| 41 | + } # End of PrivateData hashtable |
6 | 42 |
|
7 | | -# Version number of this module. |
8 | | -ModuleVersion = '3.4.2' |
9 | | - |
10 | | -# Supported PSEditions |
11 | | -CompatiblePSEditions = @('Desktop') |
12 | | - |
13 | | -# ID used to uniquely identify this module |
14 | | -GUID = '6d1078ea-36c8-443a-9476-6d6c4d6ac834' |
15 | | - |
16 | | -# Author of this module |
17 | | -Author = 'Jeff Hicks' |
18 | | - |
19 | | -# Company or vendor of this module |
20 | | -CompanyName = 'JDH Information Technology Solutions, Inc.' |
21 | | - |
22 | | -# Copyright statement for this module |
23 | | -Copyright = '2013-2020 JDH Information Technology Solutions, Inc. All Rights Reserved.' |
24 | | - |
25 | | -# Description of the functionality provided by this module |
26 | | -Description = 'Functions and add-ons for the Windows PowerShell ISE v4.0 and later' |
27 | | - |
28 | | -# Minimum version of the Windows PowerShell engine required by this module |
29 | | -PowerShellVersion = '5.1' |
30 | | - |
31 | | -# Name of the Windows PowerShell host required by this module |
32 | | -# PowerShellHostName = '' |
33 | | - |
34 | | -# Minimum version of the Windows PowerShell host required by this module |
35 | | -# PowerShellHostVersion = '' |
36 | | - |
37 | | -# Minimum version of Microsoft .NET Framework required by this module |
38 | | -# DotNetFrameworkVersion = '' |
39 | | - |
40 | | -# Minimum version of the common language runtime (CLR) required by this module |
41 | | -CLRVersion = '4.0' |
42 | | - |
43 | | -# Processor architecture (None, X86, Amd64) required by this module |
44 | | -ProcessorArchitecture = 'None' |
45 | | - |
46 | | -# Modules that must be imported into the global environment prior to importing this module |
47 | | -# RequiredModules = @() |
48 | | - |
49 | | -# Assemblies that must be loaded prior to importing this module |
50 | | -RequiredAssemblies = @() |
51 | | - |
52 | | -# Script files (.ps1) that are run in the caller's environment prior to importing this module. |
53 | | -ScriptsToProcess = @() |
54 | | - |
55 | | -# Type files (.ps1xml) to be loaded when importing this module |
56 | | -TypesToProcess = @() |
57 | | - |
58 | | -# Format files (.ps1xml) to be loaded when importing this module |
59 | | -FormatsToProcess = @() |
60 | | - |
61 | | -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess |
62 | | -# NestedModules = @() |
63 | | - |
64 | | -# Functions to export from this module |
65 | | -FunctionsToExport = 'Add-CurrentProject', 'Add-ISEBookmark', 'CloseAllFiles', |
66 | | - 'CloseAllFilesButCurrent', 'Convert-AliasDefinition', |
67 | | - 'Convert-CodetoSnippet', 'Convert-CommandtoHash', 'ConvertFrom-Alias', |
68 | | - 'ConvertFrom-MultiLineComment', 'ConvertTo-CommentHelp', |
69 | | - 'ConvertTo-Definition', 'ConvertTo-MultiLineComment', |
70 | | - 'ConvertTo-TextFile', 'Copy-ToWord', 'Edit-CurrentProject', |
71 | | - 'Edit-Snippet', 'Find-InFile', 'Get-ASTProfile', 'Get-CommandMetadata', |
72 | | - 'Get-ISEBookmark', 'Get-NextISETab', 'Get-ScriptComments', |
73 | | - 'Get-ScriptingHelp', 'Get-SearchResult', 'Import-CurrentProject', |
74 | | - 'New-CIMCommand', 'New-CommentHelp', 'New-DSCResourceSnippet', |
75 | | - 'New-FileHere', 'New-Inputbox', 'New-PSCommand', |
76 | | - 'Open-ISEBookmark', 'Open-SelectedISE', 'Out-ISETab', |
77 | | - 'Remove-ISEBookmark', 'Reset-ISEFile', 'Send-ToPrinter', |
78 | | - 'Start-MyScript', 'Update-ISEBookmark', 'Write-Signature', |
79 | | - 'New-Function','Set-ScriptLocation' |
80 | | - |
81 | | -# Cmdlets to export from this module |
82 | | -CmdletsToExport = @() |
83 | | - |
84 | | -# Variables to export from this module |
85 | | -VariablesToExport = 'MySnippets', 'MyModules', 'MyPowerShell', 'CurrentProjectList' |
86 | | - |
87 | | -# Aliases to export from this module |
88 | | -AliasesToExport = 'ccs','gcmd','glcm''tab','sd' |
89 | | - |
90 | | -# DSC resources to export from this module |
91 | | -# DscResourcesToExport = @() |
92 | | - |
93 | | -# List of all modules packaged with this module |
94 | | -# ModuleList = @() |
95 | | - |
96 | | -# List of all files packaged with this module |
97 | | -#FileList = '' |
98 | | - |
99 | | -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. |
100 | | -PrivateData = @{ |
101 | | - |
102 | | - #Category of this module |
103 | | - Category = 'PowerShell ISE' |
104 | | - |
105 | | - #IsPrerelease of this module |
106 | | - IsPrerelease = 'False' |
107 | | - |
108 | | - PSData = @{ |
109 | | - |
110 | | - # Tags applied to this module. These help with module discovery in online galleries. |
111 | | - Tags = 'ISE','Snippets','Scripting' |
112 | | - |
113 | | - # A URL to the license for this module. |
114 | | - LicenseUri = 'https://github.com/jdhitsolutions/ISEScriptingGeek/blob/master/License.txt' |
115 | | - |
116 | | - # A URL to the main website for this project. |
117 | | - ProjectUri = 'https://github.com/jdhitsolutions/ISEScriptingGeek' |
118 | | - |
119 | | - # A URL to an icon representing this module. |
120 | | - # IconUri = '' |
121 | | - |
122 | | - # ReleaseNotes of this module |
123 | | - # ReleaseNotes = '' |
124 | | - |
125 | | - # External dependent modules of this module |
126 | | - # ExternalModuleDependencies = '' |
127 | | - |
128 | | - } # End of PSData hashtable |
129 | | - |
130 | | -} # End of PrivateData hashtable |
131 | | - |
132 | | -# HelpInfo URI of this module |
133 | | -# HelpInfoURI = '' |
134 | | - |
135 | | -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
136 | | -# DefaultCommandPrefix = '' |
137 | 43 |
|
138 | 44 | } |
139 | 45 |
|
0 commit comments