|
| 1 | +@{ |
| 2 | + |
| 3 | +# Script module or binary module file associated with this manifest. |
| 4 | +ModuleToProcess = 'Metadata.psm1' |
| 5 | + |
| 6 | +# Version number of this module. |
| 7 | +ModuleVersion = '1.5.7' |
| 8 | + |
| 9 | +# ID used to uniquely identify this module |
| 10 | +GUID = 'c7505d40-646d-46b5-a440-8a81791c5d23' |
| 11 | + |
| 12 | +# Author of this module |
| 13 | +Author = @('Joel Bennett') |
| 14 | + |
| 15 | +# Company or vendor of this module |
| 16 | +CompanyName = 'HuddledMasses.org' |
| 17 | + |
| 18 | +# Copyright statement for this module |
| 19 | +Copyright = 'Copyright (c) 2014-2021 by Joel Bennett, all rights reserved.' |
| 20 | + |
| 21 | +# Description of the functionality provided by this module |
| 22 | +Description = 'A module for PowerShell data serialization' |
| 23 | + |
| 24 | +# This doesn't make it into the build output, so it's irrelevant |
| 25 | +FunctionsToExport = @('Add-MetadataConverter','ConvertFrom-Metadata','ConvertTo-Metadata','Export-Metadata','Get-Metadata','Import-Metadata','Test-PSVersion','Update-Metadata','Update-Object') |
| 26 | +CmdletsToExport = @() |
| 27 | +VariablesToExport = @() |
| 28 | +AliasesToExport = @('FromMetadata','ToMetadata','Get-ManifestValue','Update-Manifest') |
| 29 | +PrivateData = @{ |
| 30 | + PSData = @{ |
| 31 | + # The semver pre-release version information |
| 32 | + PreRelease = '' |
| 33 | + |
| 34 | + # Keyword tags to help users find this module via navigations and search. |
| 35 | + Tags = @('Serialization', 'Metadata', 'Development', 'Configuration', 'Settings') |
| 36 | + |
| 37 | + # The web address of this module's project or support homepage. |
| 38 | + ProjectUri = "https://github.com/PoshCode/Metadata" |
| 39 | + |
| 40 | + # The web address of this module's license. Points to a page that's embeddable and linkable. |
| 41 | + LicenseUri = "http://opensource.org/licenses/MIT" |
| 42 | + |
| 43 | + # Release notes for this particular version of the module |
| 44 | + ReleaseNotes = ' |
| 45 | + Fixes PSObject serialization bug |
| 46 | + ' |
| 47 | + } |
| 48 | +} |
| 49 | + |
| 50 | +} |
0 commit comments