Skip to content

Commit 336909e

Browse files
committed
extra module dep
1 parent 431d292 commit 336909e

4 files changed

Lines changed: 1415 additions & 0 deletions

File tree

Tools/Build-DevApiModules.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ $repoRoot = Split-Path -Parent $toolsRoot
55
$modulesRoot = Join-Path $repoRoot 'Modules'
66
$outputRoot = Join-Path $repoRoot 'Output'
77

8+
Import-Module -Name (Join-Path $toolsRoot 'Metadata\1.5.7\Metadata.psd1') -Force
89
Import-Module -Name (Join-Path $toolsRoot 'Configuration\1.6.0\Configuration.psd1') -Force
910
Import-Module -Name (Join-Path $toolsRoot 'ModuleBuilder\3.1.8\ModuleBuilder.psd1') -Force
1011

Tools/Metadata/1.5.7/Metadata.psd1

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
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

Comments
 (0)