Skip to content

Commit 3aea926

Browse files
authored
ComputerManagementDsc: Remove resource named from module manifest in source (#397)
* ComputerManagementDsc: Remove resource named from module manifest in `source` * Fix typo in CHANGELOG.md * Fix review comment at r1 * Fix changelog
1 parent 438d2c2 commit 3aea926

2 files changed

Lines changed: 8 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Support Options Parameter for domain join - Fixes [Issue #234](https://github.com/dsccommunity/ComputerManagementDsc/issues/234).
1212
- When joining a computer to a domain, existing AD computer objects will be deleted - Fixes [Issue #55](https://github.com/dsccommunity/ComputerManagementDsc/issues/55), [Issue #58](https://github.com/dsccommunity/ComputerManagementDsc/issues/58).
1313

14+
### Changed
15+
16+
- ComputerManagementDsc
17+
- The resource names were removed from the property `DscResourcesToExport`
18+
in the module manifest in the source folder as the built module is
19+
automatically updated with this information by the pipeline - Fixes [Issue #396](https://github.com/dsccommunity/ComputerManagementDsc/issues/396).
20+
1421
## [8.5.0] - 2021-09-13
1522

1623
### Added

source/ComputerManagementDsc.psd1

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -36,24 +36,7 @@
3636
AliasesToExport = @()
3737

3838
# DSC resources to export from this module
39-
DscResourcesToExport = @(
40-
'Computer'
41-
'OfflineDomainJoin'
42-
'PendingReboot'
43-
'PowerPlan'
44-
'PowerShellExecutionPolicy'
45-
'RemoteDesktopAdmin'
46-
'ScheduledTask'
47-
'SmbServerConfiguration'
48-
'SmbShare'
49-
'SystemLocale'
50-
'TimeZone'
51-
'VirtualMemory'
52-
'WindowsEventLog'
53-
'WindowsCapability'
54-
'IEEnhancedSecurityConfiguration'
55-
'UserAccountControl'
56-
)
39+
DscResourcesToExport = @()
5740

5841
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
5942
PrivateData = @{

0 commit comments

Comments
 (0)