|
1 | 1 | @{ |
2 | 2 | # Script module or binary module file associated with this manifest. |
3 | | - RootModule = 'Plaster.psm1' |
| 3 | + RootModule = 'Plaster.psm1' |
4 | 4 |
|
5 | 5 | # ID used to uniquely identify this module |
6 | | - GUID = 'cfce3c5e-402f-412a-a83a-7b7ee9832ff4' |
| 6 | + GUID = 'cfce3c5e-402f-412a-a83a-7b7ee9832ff4' |
7 | 7 |
|
8 | 8 | # Version number of this module. |
9 | | - ModuleVersion = '2.0.0' |
| 9 | + ModuleVersion = '2.0.0' |
10 | 10 |
|
11 | 11 | # Supported PSEditions |
12 | 12 | CompatiblePSEditions = @('Desktop', 'Core') |
13 | 13 |
|
14 | 14 | # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a |
15 | 15 | # PSData hashtable with additional module metadata used by PowerShell. |
16 | | - PrivateData = @{ |
| 16 | + PrivateData = @{ |
17 | 17 | PSData = @{ |
18 | 18 | # Tags applied to this module. These help with module discovery in online galleries. |
19 | | - Tags = @('Plaster', 'CodeGenerator', 'Scaffold', 'Template', 'JSON', 'PowerShell7') |
| 19 | + Tags = @('Plaster', 'CodeGenerator', 'Scaffold', 'Template', 'JSON', 'PowerShell7') |
20 | 20 |
|
21 | 21 | # A URL to the license for this module. |
22 | 22 | LicenseUri = 'https://github.com/PowerShellOrg/Plaster/blob/master/LICENSE' |
@@ -61,16 +61,16 @@ For the complete changelog, see: https://github.com/PowerShellOrg/Plaster/blob/m |
61 | 61 | } |
62 | 62 |
|
63 | 63 | # Author of this module |
64 | | - Author = 'PowerShell.org' |
| 64 | + Author = 'PowerShell.org' |
65 | 65 |
|
66 | 66 | # Company or vendor of this module |
67 | | - CompanyName = 'PowerShell.org' |
| 67 | + CompanyName = 'PowerShell.org' |
68 | 68 |
|
69 | 69 | # Copyright statement for this module |
70 | | - Copyright = '(c) PowerShell.org 2016-2025. All rights reserved.' |
| 70 | + Copyright = '(c) PowerShell.org 2016-2025. All rights reserved.' |
71 | 71 |
|
72 | 72 | # Description of the functionality provided by this module |
73 | | - Description = 'Plaster is a template-based file and project generator written in PowerShell. Create consistent PowerShell projects with customizable templates supporting both XML and JSON formats.' |
| 73 | + Description = 'Plaster is a template-based file and project generator written in PowerShell. Create consistent PowerShell projects with customizable templates supporting both XML and JSON formats.' |
74 | 74 |
|
75 | 75 | # Minimum version of the Windows PowerShell engine required by this module |
76 | 76 | PowerShellVersion = '5.1' |
@@ -99,21 +99,16 @@ For the complete changelog, see: https://github.com/PowerShellOrg/Plaster/blob/m |
99 | 99 | # Functions to export from this module - explicitly list each function that should be |
100 | 100 | # exported. This improves performance of PowerShell when discovering the commands in |
101 | 101 | # module. |
102 | | - FunctionsToExport = @( |
103 | | - 'Invoke-Plaster' |
104 | | - 'New-PlasterManifest' |
105 | | - 'Get-PlasterTemplate' |
106 | | - 'Test-PlasterManifest' |
107 | | - ) |
| 102 | + FunctionsToExport = '*' |
108 | 103 |
|
109 | 104 | # 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. |
110 | | - CmdletsToExport = @() |
| 105 | + CmdletsToExport = '*' |
111 | 106 |
|
112 | 107 | # Variables to export from this module |
113 | | - # VariablesToExport = @() |
| 108 | + VariablesToExport = @() |
114 | 109 |
|
115 | 110 | # 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. |
116 | | - AliasesToExport = @() |
| 111 | + AliasesToExport = @() |
117 | 112 |
|
118 | 113 | # DSC resources to export from this module |
119 | 114 | # DscResourcesToExport = @() |
|
0 commit comments