Skip to content

Commit c4cef37

Browse files
committed
Revert changes to BaseViewModel
1 parent dbcb072 commit c4cef37

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

SimpleViewModel/BaseClasses/BaseViewModel.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ protected void SetProperty<T>(ref T reference, T value, [CallerMemberName] strin
2525
if (EqualityComparer<T>.Default.Equals(reference, value))
2626
return;
2727

28+
reference = value;
2829
PropertyChanged?.Invoke(this, new(propertyName));
2930
}
3031

SimpleViewModel/SimpleViewModel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<PackageId>SimpleViewModel</PackageId>
12-
<Version>0.9.8.1</Version>
12+
<Version>0.9.8.1.1</Version>
1313
<Authors>Derek Gooding</Authors>
1414
<Company>Derek Gooding</Company>
1515
<Description>

0 commit comments

Comments
 (0)