Skip to content

Commit

Permalink
Corrected ExternalModuleDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Nov 29, 2023
1 parent 1fc0a0b commit 209e89d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Removed DscBuildHelpers module from ExternalModuleDependencies parameter in the module manifest

## [0.1.10] - 2023-11-28

- Changed AAD resource name to AzureAD
Expand Down
2 changes: 1 addition & 1 deletion source/Private/Initialize-Module.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ function Initialize-Module
[void]$moduleManifestString.AppendLine(' # ReleaseNotes of this module')
[void]$moduleManifestString.AppendLine(" ReleaseNotes = 'Module belongs to Microsoft365DSC v$($m365dscVersion)'")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(" ExternalModuleDependencies = @('Microsoft365DSC', 'DscBuildHelpers')")
[void]$moduleManifestString.AppendLine(" ExternalModuleDependencies = @('Microsoft365DSC')")
[void]$moduleManifestString.AppendLine('')
[void]$moduleManifestString.AppendLine(' }')
[void]$moduleManifestString.AppendLine(' }')
Expand Down

0 comments on commit 209e89d

Please sign in to comment.