Skip to content

Commit 8c1fe48

Browse files
updates
1 parent e2044bb commit 8c1fe48

File tree

2 files changed

+154
-1
lines changed

2 files changed

+154
-1
lines changed

PSFramework.NuGet/PSFramework.NuGet.psd1

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
'Save-PSFResourceModule'
5757
'Search-PSFPowerShellGet'
5858
'Set-PSFRepository'
59+
'Update-PSFModuleManifest'
5960
'Update-PSFRepository'
6061
)
6162

PSFramework.NuGet/functions/Get/Update-PSFModuleManifest.ps1

+153-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,91 @@
11
function Update-PSFModuleManifest {
22
[CmdletBinding()]
33
param (
4+
[Parameter(Mandatory = $true)]
5+
[PsfValidateScript('PSFramework.Validate.FSPath.File', ErrorString = 'PSFramework.Validate.FSPath.File')]
6+
[string]
47
$Path,
8+
9+
[guid]
10+
$Guid,
11+
12+
[string]
13+
$Author,
14+
15+
[string]
16+
$CompanyName,
17+
18+
[string]
19+
$CopyRight,
20+
21+
[string]
22+
$RootModule,
23+
24+
[version]
25+
$ModuleVersion,
26+
27+
[string]
28+
$Description,
29+
30+
[ValidateSet('', 'X86', 'Amd64')]
31+
[string]
32+
$ProcessorArchitecture,
33+
34+
[ValidateSet('Core', 'Desktop')]
35+
[string[]]
36+
$CompatiblePSEditions,
37+
38+
[version]
39+
$PowerShellVersion,
540

41+
[version]
42+
$ClrVersion,
43+
44+
[version]
45+
$DotNetFrameworkVersion,
46+
47+
[string]
48+
$PowerShellHostName,
49+
50+
[version]
51+
$PowerShellHostVersion,
52+
53+
[object[]]
54+
$RequiredModules,
55+
56+
[string[]]
57+
$TypesToProcess,
58+
59+
[string[]]
60+
$FormatsToProcess,
61+
62+
[string[]]
63+
$ScriptsToProcess,
64+
65+
[string[]]
66+
$RequiredAssemblies,
67+
68+
[string[]]
69+
$FileList,
70+
71+
[object[]]
72+
$ModuleList,
73+
74+
[string[]]
75+
$FunctionsToExport,
76+
77+
[string[]]
78+
$AliasesToExport,
79+
80+
[string[]]
81+
$VariablesToExport,
82+
83+
[string[]]
84+
$CmdletsToExport,
85+
86+
[string[]]
87+
$DscResourcesToExport,
88+
689
[string[]]
790
$Tags,
891

@@ -21,6 +104,18 @@
21104
[string]
22105
$Prerelease,
23106

107+
[object[]]
108+
$ExternalModuleDependencies,
109+
110+
[uri]
111+
$HelpInfoUri,
112+
113+
[string]
114+
$DefaultCommandPrefix,
115+
116+
[object[]]
117+
$NestedModules,
118+
24119
[switch]
25120
$PassThru,
26121

@@ -31,6 +126,38 @@
31126
)
32127
begin {
33128
#region Utility Functions
129+
function ConvertTo-ModuleRequirement {
130+
[CmdletBinding()]
131+
param (
132+
[Parameter(ValueFromPipeline = $true)]
133+
[AllowEmptyCollection()]
134+
[AllowNull()]
135+
[AllowEmptyString()]
136+
$InputObject,
137+
138+
[bool]
139+
$EnableException,
140+
141+
$Cmdlet
142+
)
143+
process {
144+
foreach ($item in $InputObject) {
145+
if (-not $item) { continue }
146+
147+
if ($item -is [string]) { $item; continue }
148+
149+
if (-not $item.ModuleName) {
150+
Stop-PSFFunction -String 'Update-PSFModuleManifest.Error.InvalidModuleReference' -StringValues $item -Target $item -EnableException $EnableException -Cmdlet $Cmdlet -Category InvalidArgument -Continue
151+
}
152+
153+
$data = @{ ModuleName = $item.ModuleName }
154+
if ($item.RequiredVersion) { $data.RequiredVersion = '{0}' -f $item.RequiredVersion }
155+
elseif ($item.ModuleVersion) { $data.ModuleVersion = '{0}' -f $item.ModuleVersion }
156+
157+
$data
158+
}
159+
}
160+
}
34161
function Update-ManifestProperty {
35162
[OutputType([System.Management.Automation.Language.Ast])]
36163
[CmdletBinding()]
@@ -60,7 +187,7 @@
60187

61188
$entry = $mainhash.KeyValuePairs | Where-Object { $_.Item1.Value -eq $Property }
62189
$stringValue = switch ($Type) {
63-
'String' { $Value | ConvertTo-Psd1 }
190+
'String' { "$Value" | ConvertTo-Psd1 }
64191
'StringArray' { , @(, @($Value)) | ConvertTo-Psd1 }
65192
'HashtableArray' { , @(, @($Value)) | ConvertTo-Psd1 }
66193
}
@@ -115,8 +242,32 @@
115242
Stop-PSFFunction -String 'Update-PSFModuleManifest.Error.BadManifest' -StringValues (Get-Item -Path $Path).BaseName, $Path -Cmdlet $Cmdlet -EnableException $killIt -Continue:$Continue
116243
return
117244
}
245+
246+
#region Main Properties
247+
$stringProperties = 'Guid','Author','CompanyName','CopyRight','RootModule','ModuleVersion','Description','ProcessorArchitecture','PowerShellVersion','ClrVersion','DotNetFrameworkVersion','PowerShellHostName','PowerShellHostVersion','HelpInfoUri','DefaultCommandPrefix'
248+
foreach ($property in $stringProperties) {
249+
if ($PSBoundParameters.Keys -notcontains $property) { continue }
250+
$ast = Update-ManifestProperty -Ast $ast -Property $property -Value $PSBoundParameters.$property -Type String
251+
}
252+
$stringArrayProperties = 'CompatiblePSEditions','TypesToProcess','FormatsToProcess','ScriptsToProcess','RequiredAssemblies','FileList','FunctionsToExport','AliasesToExport','VariablesToExport','CmdletsToExport','DscResourcesToExport'
253+
foreach ($property in $stringArrayProperties) {
254+
if ($PSBoundParameters.Keys -notcontains $property) { continue }
255+
$ast = Update-ManifestProperty -Ast $ast -Property $property -Value $PSBoundParameters.$property -Type StringArray
256+
}
257+
$moduleProperties = 'RequiredModules','ModuleList','NestedModules'
258+
foreach ($property in $moduleProperties) {
259+
if ($PSBoundParameters.Keys -notcontains $property) { continue }
260+
$ast = Update-ManifestProperty -Ast $ast -Property $property -Value ($PSBoundParameters.$property | ConvertTo-ModuleRequirement -EnableException $killIt -Cmdlet $Cmdlet) -Type StringArray
261+
}
262+
#endregion Main Properties
118263

119264
#region PrivateData Content
265+
$mainHash = $ast.FindAll({
266+
$args[0] -is [System.Management.Automation.Language.HashtableAst] -and
267+
$args[0].KeyValuePairs.Item1.Value -contains 'RootModule' -and
268+
$args[0].KeyValuePairs.Item1.Value -Contains 'ModuleVersion'
269+
}, $true)
270+
120271
$privateData = [ordered]@{
121272
PSData = [ordered]@{ }
122273
}
@@ -147,6 +298,7 @@
147298
if ($ProjectUri) { $privateData.PSData['ProjectUri'] = $ProjectUri }
148299
if ($ReleaseNotes) { $privateData.PSData['ReleaseNotes'] = $ReleaseNotes }
149300
if ($Prerelease) { $privateData.PSData['Prerelease'] = $Prerelease }
301+
if ($ExternalModuleDependencies) { $privateData.PSData['ExternalModuleDependencies'] = ConvertTo-ModuleRequirement -InputObject $ExternalModuleDependencies -Cmdlet $Cmdlet -EnableException $killIt }
150302

151303
$privateDataString = $privateData | ConvertTo-Psd1 -Depth 5
152304
foreach ($pair in $replacements.GetEnumerator()) {

0 commit comments

Comments
 (0)