|
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 = '1.1.4' |
| 9 | + ModuleVersion = '1.1.4' |
10 | 10 |
|
11 | 11 | # Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a |
12 | 12 | # PSData hashtable with additional module metadata used by PowerShell. |
13 | | - PrivateData = @{ |
| 13 | + PrivateData = @{ |
14 | 14 | PSData = @{ |
15 | 15 | # Tags applied to this module. These help with module discovery in online galleries. |
16 | | - Tags = @('Plaster', 'CodeGenerator', 'Scaffold') |
| 16 | + Tags = @('Plaster', 'CodeGenerator', 'Scaffold') |
17 | 17 |
|
18 | 18 | # A URL to the license for this module. |
19 | 19 | LicenseUri = 'https://github.com/PowerShellOrg/Plaster/blob/master/LICENSE' |
|
32 | 32 | } |
33 | 33 |
|
34 | 34 | # Author of this module |
35 | | - Author = 'PowerShell.org' |
| 35 | + Author = 'PowerShell.org' |
36 | 36 |
|
37 | 37 | # Company or vendor of this module |
38 | | - CompanyName = 'The DevOps Collective Inc.' |
| 38 | + CompanyName = 'The DevOps Collective Inc.' |
39 | 39 |
|
40 | 40 | # Copyright statement for this module |
41 | | - Copyright = '(c) The DevOps Collective Inc.2016-2021. All rights reserved.' |
| 41 | + Copyright = '(c) The DevOps Collective Inc.2016-2021. All rights reserved.' |
42 | 42 |
|
43 | 43 | # Description of the functionality provided by this module |
44 | | - Description = 'Plaster scaffolds PowerShell projects and files.' |
| 44 | + Description = 'Plaster scaffolds PowerShell projects and files.' |
45 | 45 |
|
46 | 46 | # Minimum version of the Windows PowerShell engine required by this module |
47 | 47 | PowerShellVersion = '3.0' |
|
54 | 54 | 'New-PlasterManifest' |
55 | 55 | 'Get-PlasterTemplate', |
56 | 56 | 'Test-PlasterManifest' |
57 | | - ) |
| 57 | + ) |
58 | 58 |
|
59 | 59 | # 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. |
60 | | - CmdletsToExport = @() |
| 60 | + CmdletsToExport = @() |
61 | 61 |
|
62 | 62 | # 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. |
63 | | - AliasesToExport = @() |
| 63 | + AliasesToExport = @() |
64 | 64 |
|
65 | 65 | # HelpInfo URI of this module |
66 | 66 | # HelpInfoURI = '' |
|
0 commit comments