- Timestamp:
- 07/07/14 15:25:17 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.PluginInfrastructure/3.3/ErrorHandling/ErrorHandling.cs
r9456 r11113 21 21 22 22 using System; 23 using System.Diagnostics;24 23 using System.Windows.Forms; 25 24 … … 31 30 } else { 32 31 string message = 33 "HeuristicLab version: " + FileVersionInfo.GetVersionInfo(typeof(ErrorHandling).Assembly.Location).FileVersion+ Environment.NewLine +32 "HeuristicLab version: " + AssemblyHelpers.GetFileVersion(typeof(ErrorHandling).Assembly) + Environment.NewLine + 34 33 exception.GetType().Name + ": " + exception.Message + Environment.NewLine + 35 34 exception.StackTrace;
Note: See TracChangeset
for help on using the changeset viewer.