Changeset 18044 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration
- Timestamp:
- 08/16/21 17:16:25 (3 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/FileManager.cs
r18043 r18044 21 21 if (!view.Locked && content != null) { 22 22 if(content is IOptimizer) { 23 exportDialog.Content = content; 24 exportDialog.ShowDialog(); 23 try { 24 exportDialog.Content = content; 25 exportDialog.ShowDialog(); 26 } catch (Exception e) { 27 ErrorHandling.ShowErrorDialog(e); 28 } 25 29 } else { 26 30 MessageBox.Show("This cannot item cannot be converted.", "Unsupported Item", MessageBoxButtons.OK); -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/MenuItems/ExportJsonTemplateMenuItem.cs
r17331 r18044 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.Linq;4 using System.Text;5 using System.Threading.Tasks;6 3 using System.Windows.Forms; 7 4 using HeuristicLab.Common; -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Plugin.cs.frame
r17331 r18044 26 26 [Plugin("HeuristicLab.JsonInterface.OptimizerIntegration", "3.3.16.0")] 27 27 [PluginFile("HeuristicLab.JsonInterface.OptimizerIntegration.dll", PluginFileType.Assembly)] 28 [PluginDependency("HeuristicLab.Attic", "1.0")]28 //[PluginDependency("HeuristicLab.Attic", "1.0")] 29 29 [PluginDependency("HeuristicLab.JsonInterface", "3.3")] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 31 32 [PluginDependency("HeuristicLab.Core", "3.3")] 32 33 [PluginDependency("HeuristicLab.Optimization", "3.3")]
Note: See TracChangeset
for help on using the changeset viewer.