From 1fafa48ff44849c7b763fd80bc8b2a3bb355d45a Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Sat, 6 Dec 2014 08:39:44 -0500 Subject: [PATCH] Make sure to use the right assembly when getting the version --- Update/UpdateCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Update/UpdateCheck.cs b/Update/UpdateCheck.cs index 6acd561..f718147 100644 --- a/Update/UpdateCheck.cs +++ b/Update/UpdateCheck.cs @@ -28,7 +28,7 @@ namespace Common.Update public static Version LocalVersion { - get { return Assembly.GetExecutingAssembly().GetName().Version; } + get { return Assembly.GetEntryAssembly().GetName().Version; } } public static bool CheckForUpdate()