|
1 | | -@{ |
2 | | - |
3 | | -# Script module or binary module file associated with this manifest. |
4 | | -ModuleToProcess = '.\Configuration.psm1' |
5 | | - |
6 | | -# Version number of this module. |
7 | | -ModuleVersion = '1.0.3' |
8 | | - |
9 | | -# ID used to uniquely identify this module |
10 | | -GUID = 'e56e5bec-4d97-4dfd-b138-abbaa14464a6' |
11 | | - |
12 | | -# Author of this module |
13 | | -Author = @('Joel Bennett') |
14 | | - |
15 | | -# Company or vendor of this module |
16 | | -CompanyName = 'HuddledMasses.org' |
17 | | - |
18 | | -# HelpInfo URI of this module |
19 | | -# HelpInfoURI = '' |
20 | | - |
21 | | -# Copyright statement for this module |
22 | | -Copyright = 'Copyright (c) 2014-2016 by Joel Bennett, all rights reserved.' |
23 | | - |
24 | | -# Description of the functionality provided by this module |
25 | | -Description = 'A module for storing and reading configuration values, with full PS Data serialization, automatic configuration for modules and scripts, etc.' |
26 | | - |
27 | | -# We explicitly name the functions we want to be visible, but we export everything with '*' |
28 | | -FunctionsToExport = 'Import-Configuration','Export-Configuration','Get-StoragePath','Add-MetadataConverter', |
29 | | - 'ConvertFrom-Metadata','ConvertTo-Metadata','Export-Metadata','Import-Metadata', |
30 | | - 'Update-Manifest','Get-ManifestValue','*' |
31 | | - |
32 | | -# Cmdlets to export from this module |
33 | | -CmdletsToExport = '*' |
34 | | - |
35 | | -# Variables to export from this module |
36 | | -VariablesToExport = '*' |
37 | | - |
38 | | -# Aliases to export from this module |
39 | | -AliasesToExport = '*' |
40 | | - |
41 | | -# List of all files packaged with this module |
42 | | -FileList = @('.\Configuration.psd1','.\Configuration.psm1','.\Metadata.psm1','.\en-US\about_Configuration.help.txt') |
43 | | - |
44 | | -PrivateData = @{ |
45 | | - # PSData is module packaging and gallery metadata embedded in PrivateData |
46 | | - # It's for the PoshCode and PowerShellGet modules |
47 | | - # We had to do this because it's the only place we're allowed to extend the manifest |
48 | | - # https://connect.microsoft.com/PowerShell/feedback/details/421837 |
49 | | - PSData = @{ |
50 | | - # Keyword tags to help users find this module via navigations and search. |
51 | | - Tags = @('Development','Configuration','Settings','Storage') |
52 | | - |
53 | | - # The web address of this module's project or support homepage. |
54 | | - ProjectUri = "https://github.com/PoshCode/Configuration" |
55 | | - |
56 | | - # The web address of this module's license. Points to a page that's embeddable and linkable. |
57 | | - LicenseUri = "http://opensource.org/licenses/MIT" |
58 | | - |
59 | | - # Release notes for this particular version of the module |
60 | | - ReleaseNotes = 'Remove almost all verbose output' |
61 | | - |
62 | | - # Indicates this is a pre-release/testing version of the module. |
63 | | - IsPrerelease = 'False' |
64 | | - } |
65 | | -} |
66 | | - |
67 | | -} |
68 | | - |
69 | | - |
| 1 | +@{ |
| 2 | + |
| 3 | +# Script module or binary module file associated with this manifest. |
| 4 | +ModuleToProcess = '.\Configuration.psm1' |
| 5 | + |
| 6 | +# Version number of this module. |
| 7 | +ModuleVersion = '1.1.0' |
| 8 | + |
| 9 | +# ID used to uniquely identify this module |
| 10 | +GUID = 'e56e5bec-4d97-4dfd-b138-abbaa14464a6' |
| 11 | + |
| 12 | +# Author of this module |
| 13 | +Author = @('Joel Bennett') |
| 14 | + |
| 15 | +# Company or vendor of this module |
| 16 | +CompanyName = 'HuddledMasses.org' |
| 17 | + |
| 18 | +# HelpInfo URI of this module |
| 19 | +# HelpInfoURI = '' |
| 20 | + |
| 21 | +# Copyright statement for this module |
| 22 | +Copyright = 'Copyright (c) 2014-2016 by Joel Bennett, all rights reserved.' |
| 23 | + |
| 24 | +# Description of the functionality provided by this module |
| 25 | +Description = 'A module for storing and reading configuration values, with full PS Data serialization, automatic configuration for modules and scripts, etc.' |
| 26 | + |
| 27 | +# We explicitly name the functions we want to be visible, but we export everything with '*' |
| 28 | +FunctionsToExport = 'Import-Configuration','Export-Configuration','Get-StoragePath','Add-MetadataConverter', |
| 29 | + 'ConvertFrom-Metadata','ConvertTo-Metadata','Export-Metadata','Import-Metadata', |
| 30 | + 'Update-Manifest','Get-ManifestValue','*' |
| 31 | + |
| 32 | +# Cmdlets to export from this module |
| 33 | +CmdletsToExport = '*' |
| 34 | + |
| 35 | +# Variables to export from this module |
| 36 | +VariablesToExport = '*' |
| 37 | + |
| 38 | +# Aliases to export from this module |
| 39 | +AliasesToExport = '*' |
| 40 | + |
| 41 | +# List of all files packaged with this module |
| 42 | +FileList = @('.\Configuration.psd1','.\Configuration.psm1','.\Metadata.psm1','.\en-US\about_Configuration.help.txt') |
| 43 | + |
| 44 | +PrivateData = @{ |
| 45 | + # PSData is module packaging and gallery metadata embedded in PrivateData |
| 46 | + # It's for the PoshCode and PowerShellGet modules |
| 47 | + # We had to do this because it's the only place we're allowed to extend the manifest |
| 48 | + # https://connect.microsoft.com/PowerShell/feedback/details/421837 |
| 49 | + PSData = @{ |
| 50 | + # Keyword tags to help users find this module via navigations and search. |
| 51 | + Tags = @('Development','Configuration','Settings','Storage') |
| 52 | + |
| 53 | + # The web address of this module's project or support homepage. |
| 54 | + ProjectUri = "https://github.com/PoshCode/Configuration" |
| 55 | + |
| 56 | + # The web address of this module's license. Points to a page that's embeddable and linkable. |
| 57 | + LicenseUri = "http://opensource.org/licenses/MIT" |
| 58 | + |
| 59 | + # Release notes for this particular version of the module |
| 60 | + ReleaseNotes = ' |
| 61 | + Added support for ScriptBlocks and SwitchParameters |
| 62 | + ' |
| 63 | + |
| 64 | + # Indicates this is a pre-release/testing version of the module. |
| 65 | + IsPrerelease = 'False' |
| 66 | + } |
| 67 | +} |
| 68 | + |
| 69 | +} |
| 70 | + |
| 71 | + |
0 commit comments