|
1 | 1 | function Update-PSFModuleManifest {
|
2 | 2 | [CmdletBinding()]
|
3 | 3 | param (
|
| 4 | + [Parameter(Mandatory = $true)] |
| 5 | + [PsfValidateScript('PSFramework.Validate.FSPath.File', ErrorString = 'PSFramework.Validate.FSPath.File')] |
| 6 | + [string] |
4 | 7 | $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, |
5 | 40 |
|
| 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 | + |
6 | 89 | [string[]]
|
7 | 90 | $Tags,
|
8 | 91 |
|
|
21 | 104 | [string]
|
22 | 105 | $Prerelease,
|
23 | 106 |
|
| 107 | + [object[]] |
| 108 | + $ExternalModuleDependencies, |
| 109 | + |
| 110 | + [uri] |
| 111 | + $HelpInfoUri, |
| 112 | + |
| 113 | + [string] |
| 114 | + $DefaultCommandPrefix, |
| 115 | + |
| 116 | + [object[]] |
| 117 | + $NestedModules, |
| 118 | + |
24 | 119 | [switch]
|
25 | 120 | $PassThru,
|
26 | 121 |
|
|
31 | 126 | )
|
32 | 127 | begin {
|
33 | 128 | #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 | + } |
34 | 161 | function Update-ManifestProperty {
|
35 | 162 | [OutputType([System.Management.Automation.Language.Ast])]
|
36 | 163 | [CmdletBinding()]
|
|
60 | 187 |
|
61 | 188 | $entry = $mainhash.KeyValuePairs | Where-Object { $_.Item1.Value -eq $Property }
|
62 | 189 | $stringValue = switch ($Type) {
|
63 |
| - 'String' { $Value | ConvertTo-Psd1 } |
| 190 | + 'String' { "$Value" | ConvertTo-Psd1 } |
64 | 191 | 'StringArray' { , @(, @($Value)) | ConvertTo-Psd1 }
|
65 | 192 | 'HashtableArray' { , @(, @($Value)) | ConvertTo-Psd1 }
|
66 | 193 | }
|
|
115 | 242 | Stop-PSFFunction -String 'Update-PSFModuleManifest.Error.BadManifest' -StringValues (Get-Item -Path $Path).BaseName, $Path -Cmdlet $Cmdlet -EnableException $killIt -Continue:$Continue
|
116 | 243 | return
|
117 | 244 | }
|
| 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 |
118 | 263 |
|
119 | 264 | #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 | + |
120 | 271 | $privateData = [ordered]@{
|
121 | 272 | PSData = [ordered]@{ }
|
122 | 273 | }
|
|
147 | 298 | if ($ProjectUri) { $privateData.PSData['ProjectUri'] = $ProjectUri }
|
148 | 299 | if ($ReleaseNotes) { $privateData.PSData['ReleaseNotes'] = $ReleaseNotes }
|
149 | 300 | if ($Prerelease) { $privateData.PSData['Prerelease'] = $Prerelease }
|
| 301 | + if ($ExternalModuleDependencies) { $privateData.PSData['ExternalModuleDependencies'] = ConvertTo-ModuleRequirement -InputObject $ExternalModuleDependencies -Cmdlet $Cmdlet -EnableException $killIt } |
150 | 302 |
|
151 | 303 | $privateDataString = $privateData | ConvertTo-Psd1 -Depth 5
|
152 | 304 | foreach ($pair in $replacements.GetEnumerator()) {
|
|
0 commit comments