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.
2 parents 84d4b58 + 012f627 commit 61feaaaCopy full SHA for 61feaaa
4 files changed
PSFramework/bin/PSFramework.dll
0 Bytes
PSFramework/bin/PSFramework.pdb
PSFramework/changelog.md
@@ -12,6 +12,7 @@
12
- Upd: PsfValidateSet now supports localized strings using the `ErrorString` property.
13
- Upd: PsfValidateScript now supports localized strings using the `ErrorString` property.
14
- Fix: PsfValidateSet fails on completion scriptblock with whitespace value
15
+ - Fix: Get-PSFConfig will show bad value in default table. Correct data still stored (#243)
16
17
## 0.10.28.144 : 2018-10-28
18
- Upd: Module Architecture update
library/PSFramework/Configuration/ConfigurationValue.cs
@@ -41,6 +41,7 @@ public object Value
41
_PersistedValue = "null";
42
}
43
else
44
+ PersistedType = ConfigurationValueType.Unknown;
45
_PersistedValue = null;
46
47
_Value = value;
0 commit comments