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.
ResourceBase
1 parent 7ca40f3 commit 1b46620Copy full SHA for 1b46620
CHANGELOG.md
@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5
6
## [Unreleased]
7
8
+### Fixed
9
+
10
+- `ResourceBase`
11
+ - Fixed style changed.
12
13
## [1.1.0] - 2023-02-26
14
15
### Added
source/Classes/010.ResourceBase.ps1
@@ -190,11 +190,11 @@ class ResourceBase
190
191
if ($isInDesiredState)
192
{
193
- Write-Verbose $this.localizedData.InDesiredState
+ Write-Verbose -Message $this.localizedData.InDesiredState
194
}
195
else
196
197
- Write-Verbose $this.localizedData.NotInDesiredState
+ Write-Verbose -Message $this.localizedData.NotInDesiredState
198
199
200
return $isInDesiredState
0 commit comments