We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 816091c commit cb7d001Copy full SHA for cb7d001
‎scripts/helpers/Build/Build-PSModuleManifest.ps1
@@ -363,6 +363,7 @@
363
$manifestTags = [System.Collections.Generic.List[string]]::new()
364
$tags = $PSData.Keys -contains 'Tags' ? ($PSData.Tags).Count -gt 0 ? $PSData.Tags : $repoLabels : $repoLabels
365
$tags | ForEach-Object { $manifestTags.Add($_) }
366
+ 'Windows', 'Linux', 'MacOS' | ForEach-Object { $manifestTags.Add($_) }
367
# Add tags for compatability mode. https://docs.microsoft.com/en-us/powershell/scripting/developer/module/how-to-write-a-powershell-module-manifest?view=powershell-7.1#compatibility-tags
368
if ($manifest.CompatiblePSEditions -contains 'Desktop') {
369
if ($manifestTags -notcontains 'PSEdition_Desktop') {
0 commit comments