Changeset 7254
- Timestamp:
- 01/02/12 11:02:14 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/AboutView.cs
r6983 r7254 20 20 #endregion 21 21 22 using System.Diagnostics; 22 23 using System.Reflection; 23 24 using System.Windows.Forms; … … 56 57 57 58 private void AboutView_Load(object sender, System.EventArgs e) { 58 versionTextBox.Text = Assembly.GetExecutingAssembly().GetName().Version.ToString(); 59 FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location); 60 string version = versionInfo.FileVersion; 61 62 versionTextBox.Text = version; 59 63 } 60 64
Note: See TracChangeset
for help on using the changeset viewer.