|
7 | 7 | # |
8 | 8 |
|
9 | 9 | @{ |
10 | | - # Script module or binary module file associated with this manifest. |
11 | | - RootModule = 'AsBuiltReport.VMware.vSphere.psm1' |
12 | 10 |
|
13 | 11 | # Version number of this module. |
14 | 12 | ModuleVersion = '1.0.5' |
|
19 | 17 | # ID used to uniquely identify this module |
20 | 18 | GUID = 'e1cbf1ce-cf01-4b6e-9cc2-56323da3c351' |
21 | 19 |
|
22 | | - # Author of this module |
23 | | - Author = 'Tim Carman' |
24 | | - |
| 20 | +# Version number of this module. |
| 21 | +ModuleVersion = '1.0.0' |
| 22 | + |
| 23 | + # Supported PSEditions |
| 24 | + CompatiblePSEditions = 'Desktop' |
| 25 | + |
| 26 | + # ID used to uniquely identify this module |
| 27 | + GUID = 'e1cbf1ce-cf01-4b6e-9cc2-56323da3c351' |
| 28 | + |
| 29 | + # Minimum version of the Windows PowerShell engine required by this module |
| 30 | + PowerShellVersion = '5.1' |
| 31 | + |
25 | 32 | # Company or vendor of this module |
26 | | - # CompanyName = '' |
| 33 | + CompanyName = '' |
27 | 34 |
|
28 | 35 | # Copyright statement for this module |
29 | 36 | Copyright = '(c) 2018 Tim Carman. All rights reserved.' |
|
37 | 44 | # Name of the Windows PowerShell host required by this module |
38 | 45 | # PowerShellHostName = '' |
39 | 46 |
|
40 | | - # Minimum version of the Windows PowerShell host required by this module |
41 | | - # PowerShellHostVersion = '' |
| 47 | + # Modules that must be imported into the global environment prior to importing this module |
| 48 | + RequiredModules = @('AsBuiltReport.Core') |
42 | 49 |
|
43 | 50 | # Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. |
44 | 51 | DotNetFrameworkVersion = '4.5' |
|
68 | 75 | # NestedModules = @() |
69 | 76 |
|
70 | 77 | # Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. |
71 | | - FunctionsToExport = @( |
72 | | - 'Invoke-AsBuiltReport.VMware.vSphere' |
73 | | - ) |
| 78 | + FunctionsToExport = 'Invoke-AsBuiltReport.VMware.vSphere' |
74 | 79 |
|
75 | 80 | # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. |
76 | | - # CmdletsToExport = @() |
| 81 | + CmdletsToExport = @() |
77 | 82 |
|
78 | 83 | # Variables to export from this module |
79 | | - # VariablesToExport = '*' |
| 84 | + # VariablesToExport = @() |
80 | 85 |
|
81 | 86 | # Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. |
82 | | - # AliasesToExport = @() |
83 | | - |
84 | | - # DSC resources to export from this module |
85 | | - # DscResourcesToExport = @() |
86 | | - |
87 | | - # List of all modules packaged with this module |
88 | | - # ModuleList = @() |
89 | | - |
90 | | - # List of all files packaged with this module |
91 | | - # FileList = @() |
92 | | - |
93 | | - # 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. |
94 | | - PrivateData = @{ |
| 87 | + AliasesToExport = @() |
95 | 88 |
|
96 | 89 | PSData = @{ |
97 | 90 | # Tags applied to this module. These help with module discovery in online galleries. |
|
120 | 113 |
|
121 | 114 | } # End of PSData hashtable |
122 | 115 |
|
123 | | - } # End of PrivateData hashtable |
| 116 | +# List of all modules packaged with this module |
| 117 | +# ModuleList = @() |
124 | 118 |
|
125 | | - # HelpInfo URI of this module |
126 | | - # HelpInfoURI = '' |
| 119 | +# List of all files packaged with this module |
| 120 | +# FileList = @() |
127 | 121 |
|
128 | 122 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
129 | 123 | # DefaultCommandPrefix = '' |
|
0 commit comments