|
1 | 1 | @{
|
2 |
| - |
| 2 | + |
3 | 3 | # Script module or binary module file associated with this manifest
|
4 | 4 | RootModule = 'PSModuleDevelopment.psm1'
|
5 |
| - |
| 5 | + |
6 | 6 | # Version number of this module.
|
7 | 7 | ModuleVersion = '2.2.6.51'
|
8 |
| - |
| 8 | + |
9 | 9 | # ID used to uniquely identify this module
|
10 | 10 | GUID = '37dd5fce-e7b5-4d57-ac37-832055ce49d6'
|
11 |
| - |
| 11 | + |
12 | 12 | # Author of this module
|
13 | 13 | Author = 'Friedrich Weinmann'
|
14 |
| - |
| 14 | + |
15 | 15 | # Company or vendor of this module
|
16 | 16 | CompanyName = 'Infernal Associates ltd.'
|
17 |
| - |
| 17 | + |
18 | 18 | # Copyright statement for this module
|
19 | 19 | Copyright = '(c) 2016. All rights reserved.'
|
20 |
| - |
| 20 | + |
21 | 21 | # Description of the functionality provided by this module
|
22 | 22 | Description = 'A module designed to speed up the development of PowerShell modules'
|
23 |
| - |
| 23 | + |
24 | 24 | # Minimum version of the Windows PowerShell engine required by this module
|
25 | 25 | PowerShellVersion = '3.0'
|
26 |
| - |
| 26 | + |
27 | 27 | # Name of the Windows PowerShell host required by this module
|
28 | 28 | PowerShellHostName = ''
|
29 |
| - |
| 29 | + |
30 | 30 | # Minimum version of the Windows PowerShell host required by this module
|
31 | 31 | PowerShellHostVersion = ''
|
32 |
| - |
| 32 | + |
33 | 33 | # Minimum version of the .NET Framework required by this module
|
34 | 34 | DotNetFrameworkVersion = '2.0'
|
35 |
| - |
| 35 | + |
36 | 36 | # Minimum version of the common language runtime (CLR) required by this module
|
37 | 37 | CLRVersion = '2.0.50727'
|
38 |
| - |
| 38 | + |
39 | 39 | # Processor architecture (None, X86, Amd64, IA64) required by this module
|
40 | 40 | ProcessorArchitecture = 'None'
|
41 |
| - |
| 41 | + |
42 | 42 | # Modules that must be imported into the global environment prior to importing
|
43 | 43 | # this module
|
44 | 44 | RequiredModules = @(
|
45 | 45 | @{ ModuleName = 'PSFramework'; ModuleVersion = '0.10.31.176' }
|
46 | 46 | )
|
47 |
| - |
| 47 | + |
48 | 48 | # Assemblies that must be loaded prior to importing this module
|
49 | 49 | RequiredAssemblies = @('bin\PSModuleDevelopment.dll')
|
50 |
| - |
| 50 | + |
51 | 51 | # Script files (.ps1) that are run in the caller's environment prior to
|
52 | 52 | # importing this module
|
53 | 53 | ScriptsToProcess = @()
|
54 |
| - |
| 54 | + |
55 | 55 | # Type files (.ps1xml) to be loaded when importing this module
|
56 | 56 | TypesToProcess = @('xml\PSModuleDevelopment.Types.ps1xml')
|
57 |
| - |
| 57 | + |
58 | 58 | # Format files (.ps1xml) to be loaded when importing this module
|
59 | 59 | FormatsToProcess = @('xml\PSModuleDevelopment.Format.ps1xml')
|
60 |
| - |
| 60 | + |
61 | 61 | # Modules to import as nested modules of the module specified in
|
62 | 62 | # ModuleToProcess
|
63 | 63 | NestedModules = @()
|
64 |
| - |
| 64 | + |
65 | 65 | # Functions to export from this module
|
66 | 66 | FunctionsToExport = @(
|
67 | 67 | 'Expand-PSMDTypeName',
|
68 | 68 | 'Find-PSMDFileContent',
|
69 | 69 | 'Find-PSMDType',
|
70 | 70 | 'Format-PSMDParameter',
|
| 71 | + 'Get-PSMDArgumentCompleter', |
71 | 72 | 'Get-PSMDAssembly',
|
72 | 73 | 'Get-PSMDConstructor',
|
73 | 74 | 'Get-PSMDHelpEx',
|
|
98 | 99 | 'Show-PSMDSyntax',
|
99 | 100 | 'Split-PSMDScriptFile'
|
100 | 101 | )
|
101 |
| - |
| 102 | + |
102 | 103 | # Cmdlets to export from this module
|
103 |
| - CmdletsToExport = '' |
104 |
| - |
| 104 | + CmdletsToExport = '' |
| 105 | + |
105 | 106 | # Variables to export from this module
|
106 | 107 | VariablesToExport = ''
|
107 |
| - |
| 108 | + |
108 | 109 | # Aliases to export from this module
|
109 | 110 | AliasesToExport = @(
|
110 | 111 | 'dotnetnew',
|
|
117 | 118 | 'rss',
|
118 | 119 | 'smd'
|
119 | 120 | )
|
120 |
| - |
| 121 | + |
121 | 122 | # List of all modules packaged with this module
|
122 | 123 | ModuleList = @()
|
123 |
| - |
| 124 | + |
124 | 125 | # List of all files packaged with this module
|
125 | 126 | FileList = @()
|
126 |
| - |
| 127 | + |
127 | 128 | # Private data to pass to the module specified in ModuleToProcess
|
128 | 129 | PrivateData = @{
|
129 |
| - |
| 130 | + |
130 | 131 | #Support for PowerShellGet galleries.
|
131 | 132 | PSData = @{
|
132 |
| - |
| 133 | + |
133 | 134 | # Tags applied to this module. These help with module discovery in online galleries.
|
134 | 135 | Tags = @('Development', 'Module')
|
135 |
| - |
| 136 | + |
136 | 137 | # A URL to the license for this module.
|
137 | 138 | # LicenseUri = ''
|
138 |
| - |
| 139 | + |
139 | 140 | # A URL to the main website for this project.
|
140 | 141 | ProjectUri = 'http://psframework.org'
|
141 |
| - |
| 142 | + |
142 | 143 | # A URL to an icon representing this module.
|
143 | 144 | # IconUri = ''
|
144 |
| - |
| 145 | + |
145 | 146 | # ReleaseNotes of this module
|
146 | 147 | # ReleaseNotes = ''
|
147 |
| - |
| 148 | + |
148 | 149 | } # End of PSData hashtable
|
149 |
| - |
| 150 | + |
150 | 151 | } # End of PrivateData hashtable
|
151 | 152 | }
|
152 | 153 |
|
|
0 commit comments