Skip to content

Commit

Permalink
Updates to the module PSD generation
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Nov 13, 2023
1 parent b6ce021 commit dd721d6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions source/Private/Initialize-Module.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -99,21 +99,21 @@ function Initialize-Module
[void]$moduleManifestString.AppendLine(' PSData = @{')
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # Tags applied to this module. These help with module discovery in online galleries.')
[void]$moduleManifestString.AppendLine(" Tags = @('DSC', 'DesiredStateConfiguration', 'M365DSC', 'Microsoft365DSC', 'Microsoft365', 'CompositeResource')")
[void]$moduleManifestString.AppendLine(" Tags = @('DSC', 'DesiredStateConfiguration', 'M365DSC', 'Microsoft365DSC', 'Microsoft365', 'CompositeResource')")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # A URL to the license for this module.')
[void]$moduleManifestString.AppendLine(" LicenseUri = 'https://github.com/ykuijs/M365DSC.CompositeResources/blob/main/LICENSE'")
[void]$moduleManifestString.AppendLine(" LicenseUri = 'https://github.com/ykuijs/M365DSC.CompositeResources/blob/main/LICENSE'")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # A URL to the main website for this project.')
[void]$moduleManifestString.AppendLine(" ProjectUri = 'https://github.com/ykuijs/M365DSC.CompositeResources'")
[void]$moduleManifestString.AppendLine(" ProjectUri = 'https://github.com/ykuijs/M365DSC.CompositeResources'")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # A URL to an icon representing this module.')
[void]$moduleManifestString.AppendLine(" IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true'")
[void]$moduleManifestString.AppendLine(" IconUri = 'https://github.com/microsoft/Microsoft365DSC/blob/Dev/Modules/Microsoft365DSC/Dependencies/Images/Logo.png?raw=true'")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' # ReleaseNotes of this module')
[void]$moduleManifestString.AppendLine(" ReleaseNotes = 'Module belongs to Microsoft365DSC v$($Version)'")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(" ExternalModuleDependencies = @('Microsoft365DSC')")
[void]$moduleManifestString.AppendLine(" ExternalModuleDependencies = @('Microsoft365DSC', 'DscBuildHelpers')")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' }')
[void]$moduleManifestString.AppendLine(' }')
Expand Down

0 comments on commit dd721d6

Please sign in to comment.