From 4f24abf3bc5922d197187a9e60783162a9c1f825 Mon Sep 17 00:00:00 2001 From: Markus Ewald Date: Thu, 10 Jul 2025 08:56:42 +0200 Subject: [PATCH] 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) --- Properties/AssemblyInfo.cs | 2 +- Source/AutoBinding/ConventionBinder.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 1c00625..55e8803 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -47,4 +47,4 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("1.3.0.0")] +[assembly: AssemblyVersion("1.3.1")] diff --git a/Source/AutoBinding/ConventionBinder.cs b/Source/AutoBinding/ConventionBinder.cs index 530cc12..d5f69e3 100644 --- a/Source/AutoBinding/ConventionBinder.cs +++ b/Source/AutoBinding/ConventionBinder.cs @@ -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; }; }