diff --git a/PSFramework/bin/PSFramework.dll b/PSFramework/bin/PSFramework.dll index d5a6cd94..12c644cb 100644 Binary files a/PSFramework/bin/PSFramework.dll and b/PSFramework/bin/PSFramework.dll differ diff --git a/PSFramework/bin/PSFramework.pdb b/PSFramework/bin/PSFramework.pdb index f7008523..cbcdaea1 100644 Binary files a/PSFramework/bin/PSFramework.pdb and b/PSFramework/bin/PSFramework.pdb differ diff --git a/PSFramework/changelog.md b/PSFramework/changelog.md index 82b07322..c99d7119 100644 --- a/PSFramework/changelog.md +++ b/PSFramework/changelog.md @@ -12,6 +12,7 @@ - Upd: PsfValidateSet now supports localized strings using the `ErrorString` property. - Upd: PsfValidateScript now supports localized strings using the `ErrorString` property. - Fix: PsfValidateSet fails on completion scriptblock with whitespace value + - Fix: Get-PSFConfig will show bad value in default table. Correct data still stored (#243) ## 0.10.28.144 : 2018-10-28 - Upd: Module Architecture update diff --git a/library/PSFramework/Configuration/ConfigurationValue.cs b/library/PSFramework/Configuration/ConfigurationValue.cs index dd825f61..1c834be8 100644 --- a/library/PSFramework/Configuration/ConfigurationValue.cs +++ b/library/PSFramework/Configuration/ConfigurationValue.cs @@ -41,6 +41,7 @@ public object Value _PersistedValue = "null"; } else + PersistedType = ConfigurationValueType.Unknown; _PersistedValue = null; _Value = value;