|
1 | 1 | <# |
2 | 2 | MIT License |
3 | 3 |
|
4 | | - Copyright (c) {{year}} {{author}} |
5 | | - <{{mail}}> |
| 4 | + Copyright (C) {{year}} {{author}}. |
| 5 | + {{mail}} |
6 | 6 | <{{website}}> |
7 | 7 |
|
8 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy |
|
35 | 35 | @{ |
36 | 36 |
|
37 | 37 | # Script module or binary module file associated with this manifest. |
38 | | - RootModule = '.\{{moduleName}}.psm1' |
| 38 | + RootModule = '.\{{moduleName}}.psm1' |
39 | 39 |
|
40 | 40 | # Version number of this module. |
41 | | - ModuleVersion = '{{version}}' |
| 41 | + ModuleVersion = '{{version}}' |
42 | 42 |
|
43 | 43 | # Supported PSEditions |
44 | 44 | # CompatiblePSEditions = @() |
|
47 | 47 | GUID = '4fec1769-909e-44cf-b715-bbc6b10564b3' |
48 | 48 |
|
49 | 49 | # Author of this module |
50 | | - Author = '{{author}}' |
| 50 | + Author = '{{author}}' |
51 | 51 |
|
52 | 52 | # Company or vendor of this module |
53 | | - CompanyName = 'Stolpe.io' |
| 53 | + CompanyName = '{{company}}' |
54 | 54 |
|
55 | 55 | # Copyright statement for this module |
56 | | - Copyright = '(c) {{year}} {{author}}. All rights reserved.' |
| 56 | + Copyright = '(c) {{year}} {{author}}. All rights reserved.' |
57 | 57 |
|
58 | 58 | # Description of the functionality provided by this module |
59 | | - Description = 'This module let you maintain your installed modules in a easy way' |
| 59 | + Description = '{{description}}' |
60 | 60 |
|
61 | 61 | # Minimum version of the PowerShell engine required by this module |
62 | | - PowerShellVersion = '5.1' |
| 62 | + PowerShellVersion = '{{powershellversion}}' |
63 | 63 |
|
64 | 64 | # Name of the PowerShell host required by this module |
65 | 65 | # PowerShellHostName = '' |
|
74 | 74 | # ClrVersion = '' |
75 | 75 |
|
76 | 76 | # Processor architecture (None, X86, Amd64) required by this module |
77 | | - # ProcessorArchitecture = '' |
| 77 | + ProcessorArchitecture = '{{processorarchitecture}}}' |
78 | 78 |
|
79 | 79 | # Modules that must be imported into the global environment prior to importing this module |
80 | 80 | # RequiredModules = @() |
|
98 | 98 | FunctionsToExport = {{function}} |
99 | 99 |
|
100 | 100 | # 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. |
101 | | - CmdletsToExport = @() |
| 101 | + CmdletsToExport = @() |
102 | 102 |
|
103 | 103 | # Variables to export from this module |
104 | 104 | VariablesToExport = '*' |
|
124 | 124 | Tags = @("PowerShell", "macOS", "Windows", "Linux", "support-tool", "sysadmin-tool", "it-tool", "maintain-module", "module-maintenance", "multi-platform", "multiOS") |
125 | 125 |
|
126 | 126 | # A URL to the license for this module. |
127 | | - LicenseUri = 'https://github.com/rstolpe/MaintainModule/blob/main/LICENSE' |
| 127 | + LicenseUri = '{{licenseuri}}' |
128 | 128 |
|
129 | 129 | # A URL to the main website for this project. |
130 | | - ProjectUri = 'https://github.com/rstolpe/MaintainModule' |
| 130 | + ProjectUri = '{{projecturi}}' |
131 | 131 |
|
132 | 132 | # A URL to an icon representing this module. |
133 | 133 | # IconUri = '' |
134 | 134 |
|
135 | 135 | # ReleaseNotes of this module |
136 | | - ReleaseNotes = 'https://github.com/rstolpe/MaintainModule/releases' |
| 136 | + ReleaseNotes = '{{releasenotes}}' |
137 | 137 |
|
138 | 138 | # Prerelease string of this module |
139 | | - # Prerelease = '{{preReleaseTag}}' |
| 139 | + Prerelease = '{{prerelease}}' |
140 | 140 |
|
141 | 141 | # Flag to indicate whether the module requires explicit user acceptance for install/update/save |
142 | 142 | RequireLicenseAcceptance = $false |
|
149 | 149 | } # End of PrivateData hashtable |
150 | 150 |
|
151 | 151 | # HelpInfo URI of this module |
152 | | - # HelpInfoURI = '' |
| 152 | + # HelpInfoURI = '' |
153 | 153 |
|
154 | 154 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. |
155 | 155 | # DefaultCommandPrefix = '' |
|
0 commit comments