Browse Source

Build number has been removed from the main window title

Tal Aloni 8 years ago
parent
commit
cbaaa2afa8
1 changed files with 2 additions and 1 deletions
  1. 2 1
      ISCSIConsole/MainForm.cs

+ 2 - 1
ISCSIConsole/MainForm.cs

@@ -33,7 +33,8 @@ namespace ISCSIConsole
 
         private void MainForm_Load(object sender, EventArgs e)
         {
-            this.Text += " v" + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
+            Version version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
+            this.Text += " v" + version.ToString(3);
             m_server.OnLogEntry += Program.OnLogEntry;
 
             List<IPAddress> localIPs = GetHostIPAddresses();