diff --git a/SharpBoot/Program.cs b/SharpBoot/Program.cs index 044d7c6..ef427b4 100644 --- a/SharpBoot/Program.cs +++ b/SharpBoot/Program.cs @@ -67,7 +67,7 @@ private static void Application_ThreadException(object sender, ThreadExceptionEv public static string GetVersion() { var v = Assembly.GetEntryAssembly().GetName().Version; - return v.Major + "." + v.Minor; + return v.Major + "." + v.Minor + (v.Build == 0 ? "" : "." + v.Build); } public static void ClrTmp() diff --git a/SharpBoot/bin/Debug/SharpBoot.exe b/SharpBoot/bin/Debug/SharpBoot.exe index b89209e..d70430b 100644 Binary files a/SharpBoot/bin/Debug/SharpBoot.exe and b/SharpBoot/bin/Debug/SharpBoot.exe differ