Changeset 11121 for stable/HeuristicLab.PluginInfrastructure/3.3/Advanced
- Timestamp:
- 07/07/14 17:00:14 (10 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11082,11113,11117
- Property svn:mergeinfo changed
-
stable/HeuristicLab.PluginInfrastructure/3.3/Advanced/InstallationManagerForm.cs
r9456 r11121 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using System.Diagnostics;25 24 using System.IO; 26 25 using System.Linq; … … 37 36 : base() { 38 37 InitializeComponent(); 39 FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location); 40 Text = "HeuristicLab Plugin Manager " + pluginInfrastructureVersion.FileVersion; 38 Text = "HeuristicLab Plugin Manager " + AssemblyHelpers.GetFileVersion(GetType().Assembly); 41 39 42 40 pluginManager.PluginLoaded += pluginManager_PluginLoaded; -
stable/HeuristicLab.PluginInfrastructure/3.3/Advanced/PluginUpdaterForm.cs
r9456 r11121 22 22 using System.Collections.Generic; 23 23 using System.ComponentModel; 24 using System.Diagnostics;25 24 using System.IO; 26 25 using System.Linq; … … 39 38 : base() { 40 39 InitializeComponent(); 41 FileVersionInfo pluginInfrastructureVersion = FileVersionInfo.GetVersionInfo(GetType().Assembly.Location); 42 Text = "HeuristicLab Plugin Manager " + pluginInfrastructureVersion.FileVersion; 40 Text = "HeuristicLab Plugin Manager " + AssemblyHelpers.GetFileVersion(GetType().Assembly); 43 41 pluginManager.PluginLoaded += pluginManager_PluginLoaded; 44 42 pluginManager.PluginUnloaded += pluginManager_PluginUnloaded;
Note: See TracChangeset
for help on using the changeset viewer.