From 088a1c9db42435c95e9f5cf3a38ed257299405ee Mon Sep 17 00:00:00 2001 From: Henry Lin Date: Fri, 25 Feb 2022 16:01:18 +0800 Subject: [PATCH] Bump version --- QuickDictionary/Properties/AssemblyInfo.cs | 4 ++-- QuickDictionary/QuickDictionary.csproj | 2 +- QuickDictionary/UserInterface/MainWindow.xaml.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/QuickDictionary/Properties/AssemblyInfo.cs b/QuickDictionary/Properties/AssemblyInfo.cs index a6589dc..7a137e3 100644 --- a/QuickDictionary/Properties/AssemblyInfo.cs +++ b/QuickDictionary/Properties/AssemblyInfo.cs @@ -50,5 +50,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.6.0.0")] -[assembly: AssemblyFileVersion("1.6.0.0")] +[assembly: AssemblyVersion("1.6.1.0")] +[assembly: AssemblyFileVersion("1.6.1.0")] diff --git a/QuickDictionary/QuickDictionary.csproj b/QuickDictionary/QuickDictionary.csproj index d740bda..0ac29c6 100644 --- a/QuickDictionary/QuickDictionary.csproj +++ b/QuickDictionary/QuickDictionary.csproj @@ -33,7 +33,7 @@ false true 0 - 1.6.0.0 + 1.6.1.0 false true default diff --git a/QuickDictionary/UserInterface/MainWindow.xaml.cs b/QuickDictionary/UserInterface/MainWindow.xaml.cs index b2bf8c2..24eb5c2 100644 --- a/QuickDictionary/UserInterface/MainWindow.xaml.cs +++ b/QuickDictionary/UserInterface/MainWindow.xaml.cs @@ -63,7 +63,7 @@ public partial class MainWindow : Window, INotifyPropertyChanged private bool engineBusy { - get => (Interlocked.CompareExchange(ref threadSafeEngineBusy, 1, 1) == 1); + get => Interlocked.CompareExchange(ref threadSafeEngineBusy, 1, 1) == 1; set { if (value) Interlocked.CompareExchange(ref threadSafeEngineBusy, 1, 0);