|
1 | | -# Copyright (c) Microsoft Corporation. All rights reserved. |
| 1 | +# Copyright (c) Microsoft Corporation. |
2 | 2 | # Licensed under the MIT License. |
3 | 3 |
|
4 | 4 | @{ |
5 | | - # Script module or binary module file associated with this manifest. |
6 | 5 | RootModule = '.\Microsoft.PowerShell.TextUtility.dll' |
7 | | - |
8 | | - # Version number of this module. |
9 | | - ModuleVersion = '1.0.0' |
10 | | - |
11 | | - # Supported PSEditions |
| 6 | + ModuleVersion = '0.1.0' |
12 | 7 | CompatiblePSEditions = @('Desktop', 'Core') |
13 | | - |
14 | | - # ID used to uniquely identify this module |
15 | 8 | GUID = '5cb64356-cd04-4a18-90a4-fa4072126155' |
16 | | - |
17 | | - # Author of this module |
18 | 9 | Author = 'Microsoft Corporation' |
19 | | - |
20 | | - # Company or vendor of this module |
21 | 10 | CompanyName = 'Microsoft Corporation' |
22 | | - |
23 | | - # Copyright statement for this module |
24 | 11 | Copyright = '(c) Microsoft Corporation. All rights reserved.' |
25 | | - |
26 | | - # Description of the functionality provided by this module |
27 | 12 | Description = "This module contains cmdlets to help with manipulating or reading text." |
28 | | - |
29 | | - # Minimum version of the PowerShell engine required by this module |
30 | 13 | PowerShellVersion = '5.1' |
31 | | - |
32 | | - # Format files (.ps1xml) to be loaded when importing this module |
33 | 14 | FormatsToProcess = @('Microsoft.PowerShell.TextUtility.format.ps1xml') |
34 | | - |
35 | | - # 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. |
36 | 15 | CmdletsToExport = @( |
37 | 16 | 'Compare-Text','ConvertFrom-Base64','ConvertTo-Base64' |
38 | 17 | ) |
39 | | - |
40 | | - # 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. |
41 | 18 | PrivateData = @{ |
42 | | - |
43 | 19 | PSData = @{ |
| 20 | + LicenseUri = 'https://github.com/PowerShell/TextUtility/blob/main/LICENSE' |
| 21 | + ProjectUri = 'https://github.com/PowerShell/TextUtility' |
| 22 | + ReleaseNotes = 'Initial release' |
| 23 | + Prerelease = 'Preview1' |
| 24 | + } |
| 25 | + } |
44 | 26 |
|
45 | | - # Tags applied to this module. These help with module discovery in online galleries. |
46 | | - # Tags = @() |
47 | | - |
48 | | - # A URL to the license for this module. |
49 | | - LicenseUri = 'https://github.com/PowerShell/Modules/License.txt' |
50 | | - |
51 | | - # A URL to the main website for this project. |
52 | | - ProjectUri = 'https://github.com/PowerShell/Modules' |
53 | | - |
54 | | - # A URL to an icon representing this module. |
55 | | - # IconUri = '' |
56 | | - |
57 | | - # ReleaseNotes of this module |
58 | | - # ReleaseNotes = '' |
59 | | - |
60 | | - # Prerelease string of this module |
61 | | - # Prerelease = '' |
62 | | - |
63 | | - # Flag to indicate whether the module requires explicit user acceptance for install/update/save |
64 | | - # RequireLicenseAcceptance = $false |
65 | | - |
66 | | - # External dependent modules of this module |
67 | | - # ExternalModuleDependencies = @() |
68 | | - } # End of PSData hashtable |
69 | | - |
70 | | - } # End of PrivateData hashtable |
71 | | - |
72 | | - # HelpInfo URI of this module |
73 | 27 | # HelpInfoURI = '' |
74 | | - |
75 | 28 | } |
0 commit comments