Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified PSFramework/bin/PSFramework.dll
Binary file not shown.
Binary file modified PSFramework/bin/PSFramework.pdb
Binary file not shown.
1 change: 1 addition & 0 deletions PSFramework/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions library/PSFramework/Configuration/ConfigurationValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public object Value
_PersistedValue = "null";
}
else
PersistedType = ConfigurationValueType.Unknown;
_PersistedValue = null;

_Value = value;
Expand Down