Updated assembly version to 1.3.1 due to the namespace typo fix (actually, this is a breaking change, but this library currently has exactly 1 user - me)

This commit is contained in:
Markus Ewald 2025-07-10 08:56:42 +02:00
parent ee6a57b784
commit 4f24abf3bc
2 changed files with 2 additions and 2 deletions

View File

@ -47,4 +47,4 @@ using System.Runtime.InteropServices;
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyVersion("1.3.1")]

View File

@ -87,7 +87,7 @@ namespace Nuclex.Avalonia.AutoBinding {
// Without it, the view has a reference to the view model (via DataContext),
// and the view model references the view (via event subscription), but this
// shouldn't bother the .NET garbage collector at all.
dialogWindow.Closed += delegate (object sender, EventArgs arguments) {
dialogWindow.Closed += delegate(object sender, EventArgs arguments) {
dialogViewModel.Submitted -= handler;
};
}