Skip to content

Commit 14c5107

Browse files
authored
Fixes Resources missing when using PSDesiredStateConfiguration 2.0.7 (#2110)
1 parent 9305e16 commit 14c5107

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
- Remove `windows-2019` images fixes [#2106](https://github.com/dsccommunity/SqlServerDsc/issues/2106).
2323
- Move individual tasks to `windows-latest`.
2424
- Added integration tests for `Assert-SqlDscLogin` command in Group 2.
25+
- `SqlServerDsc.psd1`
26+
- Set `CmdletsToExport` to `*` in module manifest to fix issue [#2109](https://github.com/dsccommunity/SqlServerDsc/issues/2109).
2527

2628
## [17.1.0] - 2025-05-22
2729

source/SqlServerDsc.psd1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
FunctionsToExport = @()
3131

3232
# Cmdlets to export from this module
33-
CmdletsToExport = @()
33+
# Use wildcard to avoid PSDesiredStateConfiguration 2.0.7 filtering class-based DSC resources (see #2109).
34+
CmdletsToExport = '*'
3435

3536
# Variables to export from this module
3637
VariablesToExport = @()

0 commit comments

Comments
 (0)