Changeset 2744
- Timestamp:
- 02/03/10 18:32:57 (15 years ago)
- Location:
- branches/Persistence Test
- Files:
-
- 25 added
- 56 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Persistence Test
- Property svn:externals set to
-
branches/Persistence Test/HeuristicLab.AdvancedOptimizationFrontend/3.3/AvailableOperatorsForm.cs
r1529 r2744 27 27 using System.Drawing; 28 28 using System.Text; 29 using System.Linq; 29 30 using System.Windows.Forms; 30 31 using WeifenLuo.WinFormsUI.Docking; 31 32 using HeuristicLab.PluginInfrastructure; 32 33 using HeuristicLab.Core; 34 using HeuristicLab.PluginInfrastructure.Manager; 33 35 34 36 namespace HeuristicLab.AdvancedOptimizationFrontend { … … 63 65 builtinOperatorsTreeView.TreeViewNodeSorter = nodeSorter; 64 66 65 DiscoveryService discoveryService = new DiscoveryService(); 66 PluginInfo[] plugins = discoveryService.Plugins; 67 foreach(PluginInfo plugin in plugins) { 67 foreach(PluginDescription plugin in ApplicationManager.Manager.Plugins) { 68 68 TreeNode pluginItem = new TreeNode(); 69 69 pluginItem.Text = plugin.Name; 70 70 pluginItem.Tag = plugin; 71 71 72 Type[] operators = discoveryService.GetTypes(typeof(IOperator), plugin);72 Type[] operators = ApplicationManager.Manager.GetTypes(typeof(IOperator), plugin).ToArray(); 73 73 foreach(Type type in operators) { 74 74 if(!type.IsAbstract) { -
branches/Persistence Test/HeuristicLab.AdvancedOptimizationFrontend/3.3/HeuristicLabAdvancedOptimizationFrontendApplication.cs
r1676 r2744 30 30 /// The HeuristicLab Advanced Optimization Frontend Application. 31 31 /// </summary> 32 [ClassInfo(Name = "HeuristicLab 3.3 (dockable)", Description="Next generation heuristic optimization environment.")] 32 /// 33 [Application("HeuristicLab 3.3 (dockable)", "Next generation heuristic optimization environment.")] 33 34 class HeuristicLabAdvancedOptimizationFrontendApplication : ApplicationBase { 34 35 /// <summary> … … 37 38 public override void Run() { 38 39 Form mainForm = new MainForm(); 39 PluginManager.ControlManager = (IControlManager)mainForm;40 ControlManager.RegisterManager((IControlManager)mainForm); 40 41 Application.Run(mainForm); 41 42 } -
branches/Persistence Test/HeuristicLab.AdvancedOptimizationFrontend/3.3/HeuristicLabAdvancedOptimizationFrontendPlugin.cs
r2134 r2744 30 30 /// Plugin class for HeuristicLab.AdvancedOptimizationFrontend plugin. 31 31 /// </summary> 32 [ ClassInfo(Name ="HeuristicLab.AdvancedOptimizationFrontend-3.3")]33 [PluginFile( Filename = "HeuristicLab.AdvancedOptimizationFrontend-3.3.dll", Filetype =PluginFileType.Assembly)]34 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]32 [Plugin("HeuristicLab.AdvancedOptimizationFrontend-3.3")] 33 [PluginFile("HeuristicLab.AdvancedOptimizationFrontend-3.3.dll", PluginFileType.Assembly)] 34 [PluginDependency("HeuristicLab.Core-3.3")] 35 35 public class HeuristicLabAdvancedOptimizationFrontendPlugin : PluginBase { 36 36 } -
branches/Persistence Test/HeuristicLab.AdvancedOptimizationFrontend/3.3/MainForm.cs
r1921 r2744 26 26 using System.Drawing; 27 27 using System.Text; 28 using System.Linq; 28 29 using System.Threading; 29 30 using System.Windows.Forms; … … 68 69 form.Show(dockPanel); 69 70 70 DiscoveryService discoveryService = new DiscoveryService();71 72 71 // discover creatable items 73 Type[] creatables = discoveryService.GetTypes(typeof(IEditable));72 Type[] creatables = ApplicationManager.Manager.GetTypes(typeof(IEditable)).ToArray(); 74 73 string[] names = new string[creatables.Length]; 75 74 for (int i = 0; i < creatables.Length; i++) … … 100 99 /// is neither a view nor an editor.</exception> 101 100 /// <param name="control">The control to display.</param> 102 public void ShowControl( IControlcontrol) {101 public void ShowControl(object control) { 103 102 DockContent content; 104 103 if (control is IEditor) … … 185 184 editor.Filename = task.filename; 186 185 editor.SaveFinished += new EventHandler(SaveFinished); 187 PluginManager.ControlManager.ShowControl(editor);186 ControlManager.Manager.ShowControl(editor); 188 187 } 189 188 lock (locker) { … … 248 247 } else { 249 248 editor.SaveFinished += new EventHandler(SaveFinished); 250 PluginManager.ControlManager.ShowControl(editor);249 ControlManager.Manager.ShowControl(editor); 251 250 EnableDisableItems(); 252 251 } -
branches/Persistence Test/HeuristicLab.BackgroundProcessing/3.2/HeuristicLabBackgroundProcessingPlugin.cs
r2408 r2744 2 2 3 3 namespace HeuristicLab.BackgroundProcessing { 4 [ ClassInfo(Name ="HeuristicLab.BackgroundProcessing-3.2")]5 [PluginFile( Filename = "HeuristicLab.BackgroundProcessing-3.2.dll", Filetype =PluginFileType.Assembly)]4 [Plugin("HeuristicLab.BackgroundProcessing-3.2")] 5 [PluginFile("HeuristicLab.BackgroundProcessing-3.2.dll", PluginFileType.Assembly)] 6 6 public class HeuristicLabBackgroundProcessingPlugin : PluginBase { } 7 7 } -
branches/Persistence Test/HeuristicLab.Charting.Data/3.3/HeuristicLabChartingDataPlugin.cs
r1872 r2744 26 26 27 27 namespace HeuristicLab.Charting.Data { 28 [ ClassInfo(Name ="HeuristicLab.Charting.Data-3.3")]29 [PluginFile( Filename = "HeuristicLab.Charting.Data-3.3.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Charting-3.3")]28 [Plugin("HeuristicLab.Charting.Data-3.3")] 29 [PluginFile("HeuristicLab.Charting.Data-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Charting-3.3")] 31 31 public class HeuristicLabChartingDataPlugin : PluginBase { 32 32 } -
branches/Persistence Test/HeuristicLab.Charting/3.3/HeuristicLabChartingPlugin.cs
r1696 r2744 26 26 27 27 namespace HeuristicLab.Charting { 28 [ ClassInfo(Name ="HeuristicLab.Charting-3.3")]29 [PluginFile( Filename = "HeuristicLab.Charting-3.3.dll", Filetype =PluginFileType.Assembly)]28 [Plugin("HeuristicLab.Charting-3.3")] 29 [PluginFile("HeuristicLab.Charting-3.3.dll", PluginFileType.Assembly)] 30 30 public class HeuristicLabChartingPlugin : PluginBase { 31 31 } -
branches/Persistence Test/HeuristicLab.Common/3.2/HeuristicLabCommonPlugin.cs
r2425 r2744 29 29 /// Plugin class for HeuristicLab.Common plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Common-3.2")]32 [PluginFile( Filename = "HeuristicLab.Common-3.2.dll", Filetype =PluginFileType.Assembly)]31 [Plugin("HeuristicLab.Common-3.2")] 32 [PluginFile("HeuristicLab.Common-3.2.dll", PluginFileType.Assembly)] 33 33 public class HeuristicLabCommonPlugin : PluginBase { 34 34 } -
branches/Persistence Test/HeuristicLab.Constraints/3.3/HeuristicLabConstraintsPlugin.cs
r1674 r2744 29 29 /// Plugin class for HeuristicLab.Constraints plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Constraints-3.3")]32 [PluginFile( Filename = "HeuristicLab.Constraints-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Constraints-3.3")] 32 [PluginFile("HeuristicLab.Constraints-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Persistence-3.3")] 36 36 public class HeuristicLabConstraintsPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.Constraints/3.3/NotConstraintView.cs
r1529 r2744 26 26 using System.Data; 27 27 using System.Text; 28 using System.Linq; 28 29 using System.Windows.Forms; 29 30 using HeuristicLab.PluginInfrastructure; … … 58 59 public NotConstraintView() { 59 60 InitializeComponent(); 60 DiscoveryService discoveryService = new DiscoveryService(); 61 itemTypes = discoveryService.GetTypes(typeof(ConstraintBase)); 61 itemTypes = ApplicationManager.Manager.GetTypes(typeof(ConstraintBase)).ToArray(); 62 62 for (int i = 0; i < itemTypes.Length; i++) { 63 63 subConstraintComboBox.Items.Add(itemTypes[i].Name); -
branches/Persistence Test/HeuristicLab.Core/3.3/ChooseItemDialog.cs
r1529 r2744 29 29 using System.Windows.Forms; 30 30 using HeuristicLab.PluginInfrastructure; 31 using HeuristicLab.PluginInfrastructure.Manager; 31 32 32 33 namespace HeuristicLab.Core { … … 89 90 } 90 91 91 DiscoveryService discoveryService = new DiscoveryService(); 92 foreach (PluginInfo plugin in discoveryService.Plugins) { 92 foreach (PluginDescription plugin in ApplicationManager.Manager.Plugins) { 93 93 TreeNode pluginNode = new TreeNode(plugin.Name); 94 94 pluginNode.Tag = null; 95 96 Type[] types = discoveryService.GetTypes(itemType, plugin); 97 foreach (Type type in types) { 95 foreach (Type type in ApplicationManager.Manager.GetTypes(itemType, plugin)) { 98 96 if (!type.IsAbstract) { 99 97 TreeNode itemNode = new TreeNode(); -
branches/Persistence Test/HeuristicLab.Core/3.3/ChooseOperatorDialog.cs
r1529 r2744 29 29 using System.Windows.Forms; 30 30 using HeuristicLab.PluginInfrastructure; 31 using HeuristicLab.PluginInfrastructure.Manager; 31 32 32 33 namespace HeuristicLab.Core { … … 70 71 builtinOperatorsTreeView.TreeViewNodeSorter = nodeSorter; 71 72 72 DiscoveryService discoveryService = new DiscoveryService(); 73 PluginInfo[] plugins = discoveryService.Plugins; 74 foreach(PluginInfo plugin in plugins) { 73 foreach(PluginDescription plugin in ApplicationManager.Manager.Plugins) { 75 74 TreeNode pluginItem = new TreeNode(); 76 75 pluginItem.Text = plugin.Name; 77 76 pluginItem.Tag = plugin; 78 77 79 Type[] operators = discoveryService.GetTypes(typeof(IOperator), plugin); 80 foreach(Type type in operators) { 78 foreach(Type type in ApplicationManager.Manager.GetTypes(typeof(IOperator), plugin)) { 81 79 if(!type.IsAbstract) { 82 80 TreeNode operatorItem = new TreeNode(); -
branches/Persistence Test/HeuristicLab.Core/3.3/ChooseTypeDialog.cs
r1529 r2744 29 29 using System.Windows.Forms; 30 30 using HeuristicLab.PluginInfrastructure; 31 using HeuristicLab.PluginInfrastructure.Manager; 31 32 32 33 namespace HeuristicLab.Core { … … 90 91 } 91 92 92 DiscoveryService discoveryService = new DiscoveryService(); 93 foreach (PluginInfo plugin in discoveryService.Plugins) { 93 foreach (PluginDescription plugin in ApplicationManager.Manager.Plugins) { 94 94 TreeNode pluginNode = new TreeNode(plugin.Name); 95 95 pluginNode.Tag = null; 96 97 Type[] types = discoveryService.GetTypes(baseType, plugin); 98 foreach (Type type in types) { 96 foreach (Type type in ApplicationManager.Manager.GetTypes(baseType, plugin)) { 99 97 TreeNode itemNode = new TreeNode(); 100 98 itemNode.Text = type.Name; -
branches/Persistence Test/HeuristicLab.Core/3.3/HeuristicLabCorePlugin.cs
r2474 r2744 30 30 /// Plugin class for HeuristicLab.Core plugin. 31 31 /// </summary> 32 [ ClassInfo(Name ="HeuristicLab.Core-3.3")]33 [PluginFile( Filename = "HeuristicLab.Core-3.3.dll", Filetype =PluginFileType.Assembly)]34 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]35 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]32 [Plugin("HeuristicLab.Core-3.3")] 33 [PluginFile("HeuristicLab.Core-3.3.dll", PluginFileType.Assembly)] 34 [PluginDependency("HeuristicLab.Common-3.2")] 35 [PluginDependency("HeuristicLab.Persistence-3.3")] 36 36 public class HeuristicLabCorePlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.Core/3.3/Interfaces/IView.cs
r776 r2744 29 29 /// An interface for all kinds visual representations of items (objects, operators...). 30 30 /// </summary> 31 public interface IView : IControl{31 public interface IView { 32 32 /// <summary> 33 33 /// Gets the current item instance. -
branches/Persistence Test/HeuristicLab.Core/3.3/OperatorGraphView.cs
r2474 r2744 184 184 IView view = op.CreateView(); 185 185 if (view != null) 186 PluginManager.ControlManager.ShowControl(view);186 ControlManager.Manager.ShowControl(view); 187 187 } 188 188 } … … 411 411 private void viewToolStripMenuItem_Click(object sender, EventArgs e) { 412 412 IView view = (IView)((ToolStripMenuItem)sender).Tag; 413 PluginManager.ControlManager.ShowControl(view);413 ControlManager.Manager.ShowControl(view); 414 414 } 415 415 private void initialOperatorToolStripMenuItem_Click(object sender, EventArgs e) { -
branches/Persistence Test/HeuristicLab.Core/3.3/OperatorLibraryEditor.cs
r1529 r2744 204 204 IView view = op.CreateView(); 205 205 if (view != null) 206 PluginManager.ControlManager.ShowControl(view);206 ControlManager.Manager.ShowControl(view); 207 207 } 208 208 } … … 287 287 private void viewToolStripMenuItem_Click(object sender, EventArgs e) { 288 288 IView view = (IView)viewToolStripMenuItem.Tag; 289 PluginManager.ControlManager.ShowControl(view);289 ControlManager.Manager.ShowControl(view); 290 290 } 291 291 #endregion -
branches/Persistence Test/HeuristicLab.Core/3.3/ScopeView.cs
r2474 r2744 131 131 if(scopesTreeView.SelectedNode != null && scopesTreeView.SelectedNode.Tag != null) { 132 132 IScope scope = (IScope)scopesTreeView.SelectedNode.Tag; 133 PluginManager.ControlManager.ShowControl(new VariablesScopeView(scope));133 ControlManager.Manager.ShowControl(new VariablesScopeView(scope)); 134 134 } 135 135 } … … 199 199 private void variablesToolStripMenuItem_Click(object sender, EventArgs e) { 200 200 IScope scope = (IScope)scopesTreeView.SelectedNode.Tag; 201 PluginManager.ControlManager.ShowControl(new VariablesScopeView(scope));201 ControlManager.Manager.ShowControl(new VariablesScopeView(scope)); 202 202 } 203 203 private void showViewToolStripMenuItem_Click(object sender, EventArgs e) { 204 204 IItem item = (IItem)((ToolStripMenuItem)sender).Tag; 205 PluginManager.ControlManager.ShowControl(item.CreateView());205 ControlManager.Manager.ShowControl(item.CreateView()); 206 206 } 207 207 #endregion -
branches/Persistence Test/HeuristicLab.Data/3.3/HeuristicLabDataPlugin.cs
r2474 r2744 29 29 /// Plugin class for HeuristicLab.Data plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Data-3.3")]32 [PluginFile( Filename = "HeuristicLab.Data-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]34 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Data-3.3")] 32 [PluginFile("HeuristicLab.Data-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Common-3.2")] 34 [PluginDependency("HeuristicLab.Core-3.3")] 35 [PluginDependency("HeuristicLab.Persistence-3.3")] 36 36 public class HeuristicLabDataPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.DataAnalysis/3.3/DatasetView.cs
r1529 r2744 37 37 : base() { 38 38 InitializeComponent(); 39 DiscoveryService discovery = new DiscoveryService();40 IDatasetManipulator[] manipuators = discovery.GetInstances<IDatasetManipulator>();41 39 contextMenuStrip.Items.Add(new ToolStripSeparator()); 42 foreach (IDatasetManipulator manipulator in manipuators) {40 foreach (IDatasetManipulator manipulator in ApplicationManager.Manager.GetInstances<IDatasetManipulator>()) { 43 41 contextMenuStrip.Items.Add(new ToolStripButton(manipulator.Action,null , delegate(object source, EventArgs args) 44 42 { -
branches/Persistence Test/HeuristicLab.DataAnalysis/3.3/HeuristicLabDataAnalysisPlugin.cs
r1914 r2744 26 26 27 27 namespace HeuristicLab.DataAnalysis { 28 [ ClassInfo(Name ="HeuristicLab.DataAnalysis-3.3")]29 [PluginFile( Filename = "HeuristicLab.DataAnalysis-3.3.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]31 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]32 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]33 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]28 [Plugin("HeuristicLab.DataAnalysis-3.3")] 29 [PluginFile("HeuristicLab.DataAnalysis-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Core-3.3")] 31 [PluginDependency("HeuristicLab.Data-3.3")] 32 [PluginDependency("HeuristicLab.Operators-3.3")] 33 [PluginDependency("HeuristicLab.Persistence-3.3")] 34 34 public class HeuristicLabDataAnalysisPlugin : PluginBase { 35 35 } -
branches/Persistence Test/HeuristicLab.Evolutionary/3.3/HeuristicLabEvolutionaryPlugin.cs
r1690 r2744 29 29 /// Plugin class for HeuristicLab.Evolutionary plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Evolutionary-3.3")]32 [PluginFile( Filename = "HeuristicLab.Evolutionary-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]31 [Plugin("HeuristicLab.Evolutionary-3.3")] 32 [PluginFile("HeuristicLab.Evolutionary-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 36 public class HeuristicLabEvolutionaryPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.GP.StructureIdentification/3.4/HeuristicLabGPStructureIdentificationPlugin.cs
r2474 r2744 26 26 27 27 namespace HeuristicLab.GP.StructureIdentification { 28 [ ClassInfo(Name ="HeuristicLab.GP.StructureIdentification-3.4")]29 [PluginFile( Filename = "HeuristicLab.GP.StructureIdentification-3.4.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]31 [ Dependency(Dependency ="HeuristicLab.Constraints-3.3")]32 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]33 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]34 [ Dependency(Dependency ="HeuristicLab.DataAnalysis-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Evolutionary-3.3")]36 [ Dependency(Dependency ="HeuristicLab.GP-3.4")]37 [ Dependency(Dependency ="HeuristicLab.Logging-3.3")]38 [ Dependency(Dependency ="HeuristicLab.Modeling-3.3")]39 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]40 [ Dependency(Dependency ="HeuristicLab.Operators.Programmable-3.3")]41 [ Dependency(Dependency ="HeuristicLab.Random-3.3")]42 [ Dependency(Dependency ="HeuristicLab.Selection-3.3")]43 [ Dependency(Dependency ="HeuristicLab.Selection.OffspringSelection-3.3")]44 [ Dependency(Dependency ="HeuristicLab.SequentialEngine-3.3")]45 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]28 [Plugin("HeuristicLab.GP.StructureIdentification-3.4")] 29 [PluginFile("HeuristicLab.GP.StructureIdentification-3.4.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common-3.2")] 31 [PluginDependency("HeuristicLab.Constraints-3.3")] 32 [PluginDependency("HeuristicLab.Core-3.3")] 33 [PluginDependency("HeuristicLab.Data-3.3")] 34 [PluginDependency("HeuristicLab.DataAnalysis-3.3")] 35 [PluginDependency("HeuristicLab.Evolutionary-3.3")] 36 [PluginDependency("HeuristicLab.GP-3.4")] 37 [PluginDependency("HeuristicLab.Logging-3.3")] 38 [PluginDependency("HeuristicLab.Modeling-3.3")] 39 [PluginDependency("HeuristicLab.Operators-3.3")] 40 [PluginDependency("HeuristicLab.Operators.Programmable-3.3")] 41 [PluginDependency("HeuristicLab.Random-3.3")] 42 [PluginDependency("HeuristicLab.Selection-3.3")] 43 [PluginDependency("HeuristicLab.Selection.OffspringSelection-3.3")] 44 [PluginDependency("HeuristicLab.SequentialEngine-3.3")] 45 [PluginDependency("HeuristicLab.Persistence-3.3")] 46 46 public class HeuristicLabGPStructureIdentificationPlugin : PluginBase { 47 47 } -
branches/Persistence Test/HeuristicLab.GP.StructureIdentification/3.4/OffSpringSelectionGpEditor.cs
r2474 r2744 87 87 IView view = OffspringSelectionGP.ProblemInjector.CreateView(); 88 88 if(view != null) 89 PluginManager.ControlManager.ShowControl(view);89 ControlManager.Manager.ShowControl(view); 90 90 } 91 91 … … 112 112 IEngine clone = (IEngine)OffspringSelectionGP.Engine.Clone(); 113 113 IEditor editor = ((IEditable)clone).CreateEditor(); 114 PluginManager.ControlManager.ShowControl(editor);114 ControlManager.Manager.ShowControl(editor); 115 115 } 116 116 #endregion -
branches/Persistence Test/HeuristicLab.GP.StructureIdentification/3.4/StandardGpEditor.cs
r2474 r2744 85 85 IView view = StandardGP.ProblemInjector.CreateView(); 86 86 if(view != null) 87 PluginManager.ControlManager.ShowControl(view);87 ControlManager.Manager.ShowControl(view); 88 88 } 89 89 … … 110 110 IEngine clone = (IEngine)StandardGP.Engine.Clone(); 111 111 IEditor editor = ((IEditable)clone).CreateEditor(); 112 PluginManager.ControlManager.ShowControl(editor);112 ControlManager.Manager.ShowControl(editor); 113 113 } 114 114 #endregion -
branches/Persistence Test/HeuristicLab.GP/3.4/FunctionView.cs
r1529 r2744 46 46 InitializeComponent(); 47 47 48 DiscoveryService discoveryService = new DiscoveryService(); 49 allNameGenerators = discoveryService.GetInstances<IFunctionTreeNameGenerator>(); 48 allNameGenerators = ApplicationManager.Manager.GetInstances<IFunctionTreeNameGenerator>().ToArray(); 50 49 representationsMenu = new MenuItem(); 51 50 representationsMenu.Text = "Tree representation"; … … 74 73 treeNodeContextMenu.MenuItems.Clear(); 75 74 treeNodeContextMenu.MenuItems.Add(representationsMenu); 76 DiscoveryService discoveryService = new DiscoveryService(); 77 IFunctionTreeExporter[] exporters = discoveryService.GetInstances<IFunctionTreeExporter>(); 75 IFunctionTreeExporter[] exporters = ApplicationManager.Manager.GetInstances<IFunctionTreeExporter>().ToArray(); 78 76 foreach (IFunctionTreeExporter exporter in exporters) { 79 77 string result; … … 176 174 177 175 protected virtual void editButton_Click(object sender, EventArgs e) { 178 PluginManager.ControlManager.ShowControl(selectedBranch.Function.CreateView());176 ControlManager.Manager.ShowControl(selectedBranch.Function.CreateView()); 179 177 } 180 178 -
branches/Persistence Test/HeuristicLab.GP/3.4/HeuristicLabGPPlugin.cs
r2474 r2744 26 26 27 27 namespace HeuristicLab.GP { 28 [ ClassInfo(Name ="HeuristicLab.GP-3.4")]29 [PluginFile( Filename = "HeuristicLab.GP-3.4.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]31 [ Dependency(Dependency ="HeuristicLab.Constraints-3.3")]32 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]33 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Evolutionary-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Random-3.3")]37 [ Dependency(Dependency ="HeuristicLab.Selection-3.3")]38 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]28 [Plugin("HeuristicLab.GP-3.4")] 29 [PluginFile("HeuristicLab.GP-3.4.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common-3.2")] 31 [PluginDependency("HeuristicLab.Constraints-3.3")] 32 [PluginDependency("HeuristicLab.Core-3.3")] 33 [PluginDependency("HeuristicLab.Data-3.3")] 34 [PluginDependency("HeuristicLab.Evolutionary-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 [PluginDependency("HeuristicLab.Random-3.3")] 37 [PluginDependency("HeuristicLab.Selection-3.3")] 38 [PluginDependency("HeuristicLab.Persistence-3.3")] 39 39 public class HeuristicLabGPPlugin : PluginBase { 40 40 } -
branches/Persistence Test/HeuristicLab.Logging/3.3/HeuristicLabLoggingPlugin.cs
r2474 r2744 29 29 /// Plugin class for HeuristicLab.Logging plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Logging-3.3")]32 [PluginFile( Filename = "HeuristicLab.Logging-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]34 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]37 [ Dependency(Dependency = "HeuristicLab.Charting-3.2")]38 [ Dependency(Dependency = "HeuristicLab.Charting.Data-3.2")]39 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Logging-3.3")] 32 [PluginFile("HeuristicLab.Logging-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Common-3.2")] 34 [PluginDependency("HeuristicLab.Core-3.3")] 35 [PluginDependency("HeuristicLab.Data-3.3")] 36 [PluginDependency("HeuristicLab.Operators-3.3")] 37 [PluginDependency("HeuristicLab.Charting-3.3")] 38 [PluginDependency("HeuristicLab.Charting.Data-3.3")] 39 [PluginDependency("HeuristicLab.Persistence-3.3")] 40 40 public class HeuristicLabLoggingPlugin : PluginBase { 41 41 } -
branches/Persistence Test/HeuristicLab.MainForm/3.2/HeuristicLabMainFormPlugin.cs
r2406 r2744 26 26 27 27 namespace HeuristicLab.Modeling.Database { 28 [ ClassInfo(Name ="HeuristicLab.MainForm-3.2")]29 [PluginFile( Filename = "HeuristicLab.MainForm-3.2.dll", Filetype =PluginFileType.Assembly)]28 [Plugin("HeuristicLab.MainForm-3.2")] 29 [PluginFile("HeuristicLab.MainForm-3.2.dll", PluginFileType.Assembly)] 30 30 public class HeuristicLabMainFormPlugin : PluginBase { 31 31 } -
branches/Persistence Test/HeuristicLab.MainForm/3.2/MainFormManager.cs
r2468 r2744 42 42 if (MainFormManager.mainform == null) { 43 43 MainFormManager.mainform = mainform; 44 45 DiscoveryService ds = new DiscoveryService();46 44 IEnumerable<Type> types = 47 from t in ds.GetTypes(typeof(IView))45 from t in ApplicationManager.Manager.GetTypes(typeof(IView)) 48 46 where !t.IsAbstract && !t.IsInterface && !t.IsGenericType && ContentAttribute.HasContentAttribute(t) 49 47 select t; -
branches/Persistence Test/HeuristicLab.Modeling/3.3/HeuristicLabModelingPlugin.cs
r1914 r2744 26 26 27 27 namespace HeuristicLab.GP.StructureIdentification { 28 [ ClassInfo(Name ="HeuristicLab.Modeling-3.3")]29 [PluginFile( Filename = "HeuristicLab.Modeling-3.3.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]31 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]32 [ Dependency(Dependency ="HeuristicLab.DataAnalysis-3.3")]28 [Plugin("HeuristicLab.Modeling-3.3")] 29 [PluginFile("HeuristicLab.Modeling-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Core-3.3")] 31 [PluginDependency("HeuristicLab.Data-3.3")] 32 [PluginDependency("HeuristicLab.DataAnalysis-3.3")] 33 33 public class HeuristicLabModelingPlugin : PluginBase { 34 34 } -
branches/Persistence Test/HeuristicLab.Operators.Programmable/3.3/HeuristicLabOperatorsProgrammablePlugin.cs
r1872 r2744 26 26 27 27 namespace HeuristicLab.Operators.Programmable { 28 [ ClassInfo(Name ="HeuristicLab.Operators.Programmable-3.3")]29 [PluginFile( Filename = "HeuristicLab.Operators.Programmable-3.3.dll", Filetype =PluginFileType.Assembly)]30 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]31 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]32 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]33 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]28 [Plugin("HeuristicLab.Operators.Programmable-3.3")] 29 [PluginFile("HeuristicLab.Operators.Programmable-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Core-3.3")] 31 [PluginDependency("HeuristicLab.Data-3.3")] 32 [PluginDependency("HeuristicLab.Operators-3.3")] 33 [PluginDependency("HeuristicLab.Persistence-3.3")] 34 34 public class HeuristicLabOperatorsProgrammablePlugin : PluginBase { 35 35 } -
branches/Persistence Test/HeuristicLab.Operators/3.3/HeuristicLabOperatorsPlugin.cs
r1673 r2744 29 29 /// Plugin class for HeuristicLab.Operators plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Operators-3.3")]32 [PluginFile( Filename = "HeuristicLab.Operators-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Constraints-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Operators-3.3")] 32 [PluginFile("HeuristicLab.Operators-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Constraints-3.3")] 34 [PluginDependency("HeuristicLab.Core-3.3")] 35 [PluginDependency("HeuristicLab.Data-3.3")] 36 [PluginDependency("HeuristicLab.Persistence-3.3")] 37 37 public class HeuristicLabOperatorsPlugin : PluginBase { 38 38 } -
branches/Persistence Test/HeuristicLab.OptimizationFrontend/3.3/AvailableOperatorsForm.cs
r1530 r2744 26 26 using System.Data; 27 27 using System.Drawing; 28 using System.Linq; 28 29 using System.Text; 29 30 using System.Windows.Forms; 30 31 using HeuristicLab.PluginInfrastructure; 31 32 using HeuristicLab.Core; 33 using HeuristicLab.PluginInfrastructure.Manager; 32 34 33 35 namespace HeuristicLab.OptimizationFrontend { … … 56 58 builtinOperatorsTreeView.TreeViewNodeSorter = nodeSorter; 57 59 58 DiscoveryService discoveryService = new DiscoveryService(); 59 PluginInfo[] plugins = discoveryService.Plugins; 60 foreach(PluginInfo plugin in plugins) { 60 foreach(PluginDescription plugin in ApplicationManager.Manager.Plugins) { 61 61 TreeNode pluginItem = new TreeNode(); 62 62 pluginItem.Text = plugin.Name; 63 63 pluginItem.Tag = plugin; 64 64 65 Type[] operators = discoveryService.GetTypes(typeof(IOperator), plugin);65 Type[] operators = ApplicationManager.Manager.GetTypes(typeof(IOperator), plugin).ToArray(); 66 66 foreach(Type type in operators) { 67 67 if(!type.IsAbstract) { -
branches/Persistence Test/HeuristicLab.OptimizationFrontend/3.3/HeuristicLabOptimizationFrontendApplication.cs
r1872 r2744 27 27 28 28 namespace HeuristicLab.OptimizationFrontend { 29 [ ClassInfo(Name = "HeuristicLab 3.3", Description="Next generation heuristic optimization environment.")]29 [Application("HeuristicLab 3.3", "Next generation heuristic optimization environment.")] 30 30 class HeuristicLabOptimizationFrontendApplication : ApplicationBase { 31 31 public override void Run() { 32 32 Form mainForm = new MainForm(); 33 PluginManager.ControlManager = (IControlManager)mainForm;33 ControlManager.RegisterManager((IControlManager)mainForm); 34 34 Application.Run(mainForm); 35 35 } -
branches/Persistence Test/HeuristicLab.OptimizationFrontend/3.3/HeuristicLabOptimizationFrontendPlugin.cs
r1872 r2744 27 27 28 28 namespace HeuristicLab.OptimizationFrontend { 29 [ ClassInfo(Name ="HeuristicLab.OptimizationFrontend-3.3")]30 [PluginFile( Filename = "HeuristicLab.OptimizationFrontend-3.3.dll", Filetype =PluginFileType.Assembly)]31 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]29 [Plugin("HeuristicLab.OptimizationFrontend-3.3")] 30 [PluginFile("HeuristicLab.OptimizationFrontend-3.3.dll", PluginFileType.Assembly)] 31 [PluginDependency("HeuristicLab.Core-3.3")] 32 32 public class HeuristicLabOptimizationFrontendPlugin : PluginBase { 33 33 } -
branches/Persistence Test/HeuristicLab.OptimizationFrontend/3.3/MainForm.cs
r1530 r2744 25 25 using System.Data; 26 26 using System.Drawing; 27 using System.Linq; 27 28 using System.Text; 28 29 using System.Threading; … … 58 59 runningTasks = 0; 59 60 60 DiscoveryService discoveryService = new DiscoveryService();61 62 61 // discover creatable items 63 Type[] creatables = discoveryService.GetTypes(typeof(IEditable));62 Type[] creatables = ApplicationManager.Manager.GetTypes(typeof(IEditable)).ToArray(); 64 63 string[] names = new string[creatables.Length]; 65 64 for(int i = 0; i < creatables.Length; i++) … … 84 83 85 84 #region IControlManager Members 86 public void ShowControl( IControlcontrol) {85 public void ShowControl(object control) { 87 86 if(control is IEditor) { 88 87 EditorForm form = new EditorForm((IEditor)control); … … 171 170 else { 172 171 editor.Filename = task.filename; 173 PluginManager.ControlManager.ShowControl(editor);172 ControlManager.Manager.ShowControl(editor); 174 173 } 175 174 lock(locker) { … … 234 233 MessageBox.Show("The selected item doesn't provide an editor.", "Editor Error", MessageBoxButtons.OK, MessageBoxIcon.Error); 235 234 } else { 236 PluginManager.ControlManager.ShowControl(editor);235 ControlManager.Manager.ShowControl(editor); 237 236 EnableDisableItems(); 238 237 } -
branches/Persistence Test/HeuristicLab.Permutation/3.3/HeuristicLabPermutationPlugin.cs
r1689 r2744 29 29 /// Plugin class for HeuristicLab.Permutation plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Permutation-3.3")]32 [PluginFile( Filename = "HeuristicLab.Permutation-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Evolutionary-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Random-3.3")]31 [Plugin("HeuristicLab.Permutation-3.3")] 32 [PluginFile("HeuristicLab.Permutation-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Evolutionary-3.3")] 36 [PluginDependency("HeuristicLab.Random-3.3")] 37 37 public class HeuristicLabRandomPlugin : PluginBase { 38 38 } -
branches/Persistence Test/HeuristicLab.Persistence.GUI/3.3/HeuristicLabPersistenceGUIPlugin.cs
r2734 r2744 4 4 namespace HeuristicLab.Persistence.GUI { 5 5 6 [ ClassInfo(Name ="HeuristicLab.Persistence.GUI-3.3")]7 [PluginFile( Filename = "HeuristicLab.Persistence.GUI-3.3.dll", Filetype =PluginFileType.Assembly)]8 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]6 [Plugin("HeuristicLab.Persistence.GUI-3.3")] 7 [PluginFile("HeuristicLab.Persistence.GUI-3.3.dll", PluginFileType.Assembly)] 8 [PluginDependency("HeuristicLab.Persistence-3.3")] 9 9 public class HeuristicLabPersistenceGUIPlugin : PluginBase { } 10 10 11 11 12 [ ClassInfo(Name ="Persistence Configuration")]12 [Application("Persistence Configuration")] 13 13 public class HeuristicLabPersistenceGUIApplication : ApplicationBase { 14 14 public override void Run() { -
branches/Persistence Test/HeuristicLab.Persistence.GUI/3.3/Properties/AssemblyInfo.frame
r1526 r2744 23 23 using System.Runtime.CompilerServices; 24 24 using System.Runtime.InteropServices; 25 using HeuristicLab.PluginInfrastructure; 25 26 26 27 // General Information about an assembly is controlled through the following … … 53 54 [assembly: AssemblyVersion("3.3.0.$WCREV$")] 54 55 [assembly: AssemblyFileVersion("3.3.0.$WCREV$")] 56 [assembly: AssemblyBuildDate("$WCNOW$")] -
branches/Persistence Test/HeuristicLab.Persistence/3.3/HeuristicLabPersistencePlugin.cs
r1566 r2744 3 3 namespace HeuristicLab.Persistence { 4 4 5 [ ClassInfo(Name ="HeuristicLab.Persistence-3.3")]6 [PluginFile( Filename = "HeuristicLab.Persistence-3.3.dll", Filetype =PluginFileType.Assembly)]7 [ Dependency(Dependency ="HeuristicLab.Tracing-3.2")]5 [Plugin("HeuristicLab.Persistence-3.3")] 6 [PluginFile("HeuristicLab.Persistence-3.3.dll", PluginFileType.Assembly)] 7 [PluginDependency("HeuristicLab.Tracing-3.2")] 8 8 public class HeuristicLabPersistencePlugin : PluginBase { } 9 9 -
branches/Persistence Test/HeuristicLab.Persistence/3.3/Properties/AssemblyInfo.frame
r1526 r2744 23 23 using System.Runtime.CompilerServices; 24 24 using System.Runtime.InteropServices; 25 using HeuristicLab.PluginInfrastructure; 25 26 26 27 // General Information about an assembly is controlled through the following … … 53 54 [assembly: AssemblyVersion("3.3.0.$WCREV$")] 54 55 [assembly: AssemblyFileVersion("3.3.0.$WCREV$")] 56 [assembly: AssemblyBuildDate("$WCNOW$")] -
branches/Persistence Test/HeuristicLab.Random/3.3/HeuristicLabRandomPlugin.cs
r1688 r2744 29 29 /// Plugin class for HeuristicLab.Random plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Random-3.3")]32 [PluginFile( Filename = "HeuristicLab.Random-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Random-3.3")] 32 [PluginFile("HeuristicLab.Random-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 [PluginDependency("HeuristicLab.Persistence-3.3")] 37 37 public class HeuristicLabRandomPlugin : PluginBase { 38 38 } -
branches/Persistence Test/HeuristicLab.Routing.TSP/3.3/HeuristicLabRoutingTSPPlugin.cs
r1872 r2744 29 29 /// Plugin class for HeuristicLab.Routing.TSP plugin 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Routing.TSP-3.3")]32 [PluginFile( Filename = "HeuristicLab.Routing.TSP-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Permutation-3.3")]37 [ Dependency(Dependency = "HeuristicLab.Charting-3.2")]38 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Routing.TSP-3.3")] 32 [PluginFile("HeuristicLab.Routing.TSP-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 [PluginDependency("HeuristicLab.Permutation-3.3")] 37 [PluginDependency("HeuristicLab.Charting-3.3")] 38 [PluginDependency("HeuristicLab.Persistence-3.3")] 39 39 public class HeuristicLabRoutingTSPPlugin : PluginBase { 40 40 } -
branches/Persistence Test/HeuristicLab.SGA/3.3/HeuristicLabSGAPlugin.cs
r2474 r2744 29 29 /// Plugin class for HeuristicLab.SGA plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.SGA-3.3")]32 [PluginFile( Filename = "HeuristicLab.SGA-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Common-3.2")]34 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]36 [ Dependency(Dependency ="HeuristicLab.Evolutionary-3.3")]37 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]38 [ Dependency(Dependency ="HeuristicLab.Random-3.3")]39 [ Dependency(Dependency ="HeuristicLab.Selection-3.3")]40 [ Dependency(Dependency ="HeuristicLab.Logging-3.3")]41 [ Dependency(Dependency ="HeuristicLab.SequentialEngine-3.3")]42 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.SGA-3.3")] 32 [PluginFile("HeuristicLab.SGA-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Common-3.2")] 34 [PluginDependency("HeuristicLab.Core-3.3")] 35 [PluginDependency("HeuristicLab.Data-3.3")] 36 [PluginDependency("HeuristicLab.Evolutionary-3.3")] 37 [PluginDependency("HeuristicLab.Operators-3.3")] 38 [PluginDependency("HeuristicLab.Random-3.3")] 39 [PluginDependency("HeuristicLab.Selection-3.3")] 40 [PluginDependency("HeuristicLab.Logging-3.3")] 41 [PluginDependency("HeuristicLab.SequentialEngine-3.3")] 42 [PluginDependency("HeuristicLab.Persistence-3.3")] 43 43 public class HeuristicLabSGAPlugin : PluginBase { 44 44 } -
branches/Persistence Test/HeuristicLab.SGA/3.3/SGAEditor.cs
r2474 r2744 117 117 IView view = SGA.ProblemInjector.CreateView(); 118 118 if (view != null) 119 PluginManager.ControlManager.ShowControl(view);119 ControlManager.Manager.ShowControl(view); 120 120 } 121 121 private void viewSolutionGenerationButton_Click(object sender, EventArgs e) { 122 122 IView view = SGA.SolutionGenerator.CreateView(); 123 123 if (view != null) 124 PluginManager.ControlManager.ShowControl(view);124 ControlManager.Manager.ShowControl(view); 125 125 } 126 126 private void viewSelectionButton_Click(object sender, EventArgs e) { 127 127 IView view = SGA.Selector.CreateView(); 128 128 if (view != null) 129 PluginManager.ControlManager.ShowControl(view);129 ControlManager.Manager.ShowControl(view); 130 130 } 131 131 private void viewCrossoverButton_Click(object sender, EventArgs e) { 132 132 IView view = SGA.Crossover.CreateView(); 133 133 if (view != null) 134 PluginManager.ControlManager.ShowControl(view);134 ControlManager.Manager.ShowControl(view); 135 135 } 136 136 private void viewMutationButton_Click(object sender, EventArgs e) { 137 137 IView view = SGA.Mutator.CreateView(); 138 138 if (view != null) 139 PluginManager.ControlManager.ShowControl(view);139 ControlManager.Manager.ShowControl(view); 140 140 } 141 141 private void viewEvaluationButton_Click(object sender, EventArgs e) { 142 142 IView view = SGA.Evaluator.CreateView(); 143 143 if (view != null) 144 PluginManager.ControlManager.ShowControl(view);144 ControlManager.Manager.ShowControl(view); 145 145 } 146 146 private void setProblemInitializationButton_Click(object sender, EventArgs e) { … … 200 200 IEngine clone = (IEngine)SGA.Engine.Clone(); 201 201 IEditor editor = ((IEditable)clone).CreateEditor(); 202 PluginManager.ControlManager.ShowControl(editor);202 ControlManager.Manager.ShowControl(editor); 203 203 } 204 204 #endregion -
branches/Persistence Test/HeuristicLab.Selection.OffspringSelection/3.3/HeuristicLabSelectionOffspringSelectionPlugin.cs
r1872 r2744 29 29 /// Plugin class for HeuristicLab.Selection.OffspringSelection plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Selection.OffspringSelection-3.3")]32 [PluginFile( Filename = "HeuristicLab.Selection.OffspringSelection-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]31 [Plugin("HeuristicLab.Selection.OffspringSelection-3.3")] 32 [PluginFile("HeuristicLab.Selection.OffspringSelection-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 35 public class HeuristicLabSelectionOffspringSelectionPlugin : PluginBase { 36 36 } -
branches/Persistence Test/HeuristicLab.Selection/3.3/HeuristicLabSelectionPlugin.cs
r1694 r2744 29 29 /// Plugin class for HeuristicLab.Selection plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Selection-3.3")]32 [PluginFile( Filename = "HeuristicLab.Selection-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]31 [Plugin("HeuristicLab.Selection-3.3")] 32 [PluginFile("HeuristicLab.Selection-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 36 public class HeuristicLabSelectionPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.SequentialEngine/3.3/HeuristicLabSequentialEnginePlugin.cs
r1678 r2744 29 29 /// Plugin class for HeuristicLab.SequentialEngine plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.SequentialEngine-3.3")]32 [PluginFile( Filename = "HeuristicLab.SequentialEngine-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]31 [Plugin("HeuristicLab.SequentialEngine-3.3")] 32 [PluginFile("HeuristicLab.SequentialEngine-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 34 public class HeuristicLabSequentialEnginePlugin : PluginBase { 35 35 } -
branches/Persistence Test/HeuristicLab.TestFunctions/3.3/HeuristicLabTestFunctionsPlugin.cs
r1872 r2744 29 29 /// Plugin class for HeuristicLab.TestFunctions plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.TestFunctions-3.3")]32 [PluginFile( Filename = "HeuristicLab.TestFunctions-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Operators-3.3")]31 [Plugin("HeuristicLab.TestFunctions-3.3")] 32 [PluginFile("HeuristicLab.TestFunctions-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Operators-3.3")] 36 36 public class HeuristicLabTestFunctionsPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.ThreadParallelEngine/3.3/HeuristicLabThreadParallelEnginePlugin.cs
r1872 r2744 29 29 /// Plugin class for HeuristicLab.ThreadParallelEngine plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.ThreadParallelEngine-3.3")]32 [PluginFile( Filename = "HeuristicLab.ThreadParallelEngine-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]31 [Plugin("HeuristicLab.ThreadParallelEngine-3.3")] 32 [PluginFile("HeuristicLab.ThreadParallelEngine-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 34 public class HeuristicLabThreadParallelEnginePlugin : PluginBase { 35 35 } -
branches/Persistence Test/HeuristicLab.Tracing/3.2/HeuristicLab.Tracing-3.2.csproj
r1959 r2744 84 84 </ItemGroup> 85 85 <ItemGroup> 86 <Compile Include="HiveLogger.cs" />87 86 <Compile Include="Logger.cs" /> 88 87 <Compile Include="HeuristicLabTracingPlugin.cs" /> … … 114 113 <ItemGroup> 115 114 <Content Include="HeuristicLab.Hive.log4net.xml" /> 116 <Content Include="log4net licence.txt" /> 115 <Content Include="log4net licence.txt"> 116 <CopyToOutputDirectory>Always</CopyToOutputDirectory> 117 </Content> 117 118 </ItemGroup> 118 119 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/Persistence Test/HeuristicLab.Tracing/3.2/HeuristicLabTracingPlugin.cs
r1534 r2744 3 3 namespace HeuristicLab.Tracing { 4 4 5 [ ClassInfo(Name ="HeuristicLab.Tracing-3.2")]6 [PluginFile( Filename = "HeuristicLab.Tracing-3.2.dll", Filetype =PluginFileType.Assembly)]7 [PluginFile( Filename = "log4net.dll", Filetype =PluginFileType.Assembly)]8 [PluginFile( Filename = "log4net licence.txt", Filetype =PluginFileType.License)]9 [PluginFile( Filename = "HeuristicLab.log4net.xml", Filetype =PluginFileType.Data)]5 [Plugin("HeuristicLab.Tracing-3.2")] 6 [PluginFile("HeuristicLab.Tracing-3.2.dll", PluginFileType.Assembly)] 7 [PluginFile("log4net.dll", PluginFileType.Assembly)] 8 [PluginFile("log4net licence.txt", PluginFileType.License)] 9 [PluginFile("HeuristicLab.log4net.xml", PluginFileType.Data)] 10 10 public class HeuristicLabPersistencePlugin : PluginBase {} 11 11 -
branches/Persistence Test/HeuristicLab.Tracing/3.2/Logger.cs
r1933 r2744 17 17 if (string.IsNullOrEmpty(Settings.Default.TracingLog4netConfigFile)) { 18 18 Settings.Default.TracingLog4netConfigFile = 19 Path.Combine( 20 PluginInfrastructure.Properties.Settings.Default.PluginDir, 21 "HeuristicLab.log4net.xml"); 19 "HeuristicLab.log4net.xml"; 22 20 } 23 21 XmlConfigurator.ConfigureAndWatch( -
branches/Persistence Test/HeuristicLab.sln
r2565 r2744 10 10 EndProjectSection 11 11 EndProject 12 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence-3.3", "HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj", "{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}" 13 EndProject 14 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.GUI-3.3", "HeuristicLab.Persistence.GUI\3.3\HeuristicLab.Persistence.GUI-3.3.csproj", "{A9E282EA-180F-4233-B809-AEDF0787545C}" 15 EndProject 16 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Tracing-3.2", "HeuristicLab.Tracing\3.2\HeuristicLab.Tracing-3.2.csproj", "{EE2034D9-6E27-48A1-B855-42D45F69A4FC}" 17 EndProject 18 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.UnitTest", "HeuristicLab.Persistence\UnitTests\HeuristicLab.Persistence.UnitTest.csproj", "{BF7D9494-A586-457B-8DF9-ED599F9E6A71}" 19 EndProject 20 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Core-3.3", "HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj", "{C36BD924-A541-4A00-AFA8-41701378DDC5}" 21 EndProject 22 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Data-3.3", "HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj", "{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}" 23 EndProject 24 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Constraints-3.3", "HeuristicLab.Constraints\3.3\HeuristicLab.Constraints-3.3.csproj", "{19C1E42A-4B48-4EFD-B697-899016F1C198}" 25 EndProject 26 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators-3.3", "HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj", "{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}" 27 EndProject 28 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.AdvancedOptimizationFrontend-3.3", "HeuristicLab.AdvancedOptimizationFrontend\3.3\HeuristicLab.AdvancedOptimizationFrontend-3.3.csproj", "{D4E8C5EC-DB4A-4FF5-AE45-770A88B6D609}" 29 EndProject 30 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SequentialEngine-3.3", "HeuristicLab.SequentialEngine\3.3\HeuristicLab.SequentialEngine-3.3.csproj", "{DC3D7072-7999-4719-B65D-3997744D5DC1}" 31 EndProject 32 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Permutation-3.3", "HeuristicLab.Permutation\3.3\HeuristicLab.Permutation-3.3.csproj", "{00282156-589D-424F-9CE4-A8038636C926}" 33 EndProject 34 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Evolutionary-3.3", "HeuristicLab.Evolutionary\3.3\HeuristicLab.Evolutionary-3.3.csproj", "{25087811-F74C-4128-BC86-8324271DA13E}" 35 EndProject 36 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Random-3.3", "HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj", "{F4539FB6-4708-40C9-BE64-0A1390AEA197}" 37 EndProject 38 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection-3.3", "HeuristicLab.Selection\3.3\HeuristicLab.Selection-3.3.csproj", "{2C36CD4F-E5F5-43A4-801A-201EA895FE17}" 39 EndProject 40 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Charting-3.3", "HeuristicLab.Charting\3.3\HeuristicLab.Charting-3.3.csproj", "{A8265018-D687-4907-8A36-63B25967A038}" 41 EndProject 42 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Routing.TSP-3.3", "HeuristicLab.Routing.TSP\3.3\HeuristicLab.Routing.TSP-3.3.csproj", "{600287A3-8714-453E-B875-A05F3EB72315}" 43 EndProject 44 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HeuristicLab 3.3", "HeuristicLab 3.3", "{78982D7C-D63D-4A3D-AE1F-F58AC007603B}" 45 EndProject 46 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Charting.Data-3.3", "HeuristicLab.Charting.Data\3.3\HeuristicLab.Charting.Data-3.3.csproj", "{EE956A95-6344-4B01-876F-BE95C5E2F92B}" 47 EndProject 48 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Logging-3.3", "HeuristicLab.Logging\3.3\HeuristicLab.Logging-3.3.csproj", "{72908B54-D136-4BF2-8474-25AA6CB66C92}" 49 EndProject 50 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators.Programmable-3.3", "HeuristicLab.Operators.Programmable\3.3\HeuristicLab.Operators.Programmable-3.3.csproj", "{6A5F8C2D-B0C3-4B36-BC20-9B1A91EE6DB6}" 51 EndProject 52 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection.OffspringSelection-3.3", "HeuristicLab.Selection.OffspringSelection\3.3\HeuristicLab.Selection.OffspringSelection-3.3.csproj", "{81609E8A-9757-4865-8B89-0B6603F769E8}" 53 EndProject 54 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SGA-3.3", "HeuristicLab.SGA\3.3\HeuristicLab.SGA-3.3.csproj", "{4C3305C4-E440-4EAD-B218-68D77AE51543}" 55 EndProject 56 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.TestFunctions-3.3", "HeuristicLab.TestFunctions\3.3\HeuristicLab.TestFunctions-3.3.csproj", "{55E23C37-F4F8-4B20-89B3-1B8B59050CE2}" 57 EndProject 58 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.ThreadParallelEngine-3.3", "HeuristicLab.ThreadParallelEngine\3.3\HeuristicLab.ThreadParallelEngine-3.3.csproj", "{C2E99CCE-9FB0-456F-9BA0-57900E4AA799}" 59 EndProject 60 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.OptimizationFrontend-3.3", "HeuristicLab.OptimizationFrontend\3.3\HeuristicLab.OptimizationFrontend-3.3.csproj", "{BEE2B944-7F12-42CC-95A0-6EFB837FDA00}" 61 EndProject 62 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.DataAnalysis-3.3", "HeuristicLab.DataAnalysis\3.3\HeuristicLab.DataAnalysis-3.3.csproj", "{6AD536AE-B4CC-4424-B0A2-20CECE88CE57}" 63 EndProject 64 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP-3.4", "HeuristicLab.GP\3.4\HeuristicLab.GP-3.4.csproj", "{DA0D505A-2149-4E3C-B220-5724DE26EB59}" 65 EndProject 66 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification-3.4", "HeuristicLab.GP.StructureIdentification\3.4\HeuristicLab.GP.StructureIdentification-3.4.csproj", "{4BA6068B-647C-454D-AED1-F4833034A476}" 67 EndProject 68 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Modeling-3.3", "HeuristicLab.Modeling\3.3\HeuristicLab.Modeling-3.3.csproj", "{3A5ACA94-47A7-47D6-B644-2B8A7503FCCC}" 69 EndProject 70 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "WinFormsUI\WinFormsUI.csproj", "{C75532C4-765B-418E-B09B-46D36B2ABDB1}" 71 EndProject 72 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Common-3.2", "HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj", "{1FC004FC-59AF-4249-B1B6-FF25873A20E4}" 73 EndProject 74 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.BackgroundProcessing-3.2", "HeuristicLab.BackgroundProcessing\3.2\HeuristicLab.BackgroundProcessing-3.2.csproj", "{589BECAE-69B0-4EB1-8C06-C073531762B7}" 75 EndProject 76 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.MainForm-3.2", "HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj", "{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}" 77 EndProject 78 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.PluginInfrastructure", "HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj", "{94186A6A-5176-4402-AE83-886557B53CCA}" 79 EndProject 12 80 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab", "HeuristicLab\HeuristicLab.csproj", "{623FB817-8371-4A9A-A491-4DECC87B2BBB}" 13 EndProject14 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.PluginInfrastructure", "HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj", "{94186A6A-5176-4402-AE83-886557B53CCA}"15 EndProject16 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.PluginInfrastructure.GUI", "HeuristicLab.PluginInfrastructure.GUI\HeuristicLab.PluginInfrastructure.GUI.csproj", "{D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}"17 EndProject18 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence-3.3", "HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj", "{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}"19 EndProject20 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.GUI-3.3", "HeuristicLab.Persistence.GUI\3.3\HeuristicLab.Persistence.GUI-3.3.csproj", "{A9E282EA-180F-4233-B809-AEDF0787545C}"21 EndProject22 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Tracing-3.2", "HeuristicLab.Tracing\3.2\HeuristicLab.Tracing-3.2.csproj", "{EE2034D9-6E27-48A1-B855-42D45F69A4FC}"23 EndProject24 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.UnitTest", "HeuristicLab.Persistence\UnitTests\HeuristicLab.Persistence.UnitTest.csproj", "{BF7D9494-A586-457B-8DF9-ED599F9E6A71}"25 EndProject26 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Core-3.3", "HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj", "{C36BD924-A541-4A00-AFA8-41701378DDC5}"27 EndProject28 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Data-3.3", "HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj", "{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}"29 EndProject30 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Constraints-3.3", "HeuristicLab.Constraints\3.3\HeuristicLab.Constraints-3.3.csproj", "{19C1E42A-4B48-4EFD-B697-899016F1C198}"31 EndProject32 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators-3.3", "HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj", "{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}"33 EndProject34 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.AdvancedOptimizationFrontend-3.3", "HeuristicLab.AdvancedOptimizationFrontend\3.3\HeuristicLab.AdvancedOptimizationFrontend-3.3.csproj", "{D4E8C5EC-DB4A-4FF5-AE45-770A88B6D609}"35 EndProject36 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SequentialEngine-3.3", "HeuristicLab.SequentialEngine\3.3\HeuristicLab.SequentialEngine-3.3.csproj", "{DC3D7072-7999-4719-B65D-3997744D5DC1}"37 EndProject38 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Permutation-3.3", "HeuristicLab.Permutation\3.3\HeuristicLab.Permutation-3.3.csproj", "{00282156-589D-424F-9CE4-A8038636C926}"39 EndProject40 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Evolutionary-3.3", "HeuristicLab.Evolutionary\3.3\HeuristicLab.Evolutionary-3.3.csproj", "{25087811-F74C-4128-BC86-8324271DA13E}"41 EndProject42 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Random-3.3", "HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj", "{F4539FB6-4708-40C9-BE64-0A1390AEA197}"43 EndProject44 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection-3.3", "HeuristicLab.Selection\3.3\HeuristicLab.Selection-3.3.csproj", "{2C36CD4F-E5F5-43A4-801A-201EA895FE17}"45 EndProject46 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Charting-3.3", "HeuristicLab.Charting\3.3\HeuristicLab.Charting-3.3.csproj", "{A8265018-D687-4907-8A36-63B25967A038}"47 EndProject48 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Routing.TSP-3.3", "HeuristicLab.Routing.TSP\3.3\HeuristicLab.Routing.TSP-3.3.csproj", "{600287A3-8714-453E-B875-A05F3EB72315}"49 EndProject50 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HeuristicLab 3.3", "HeuristicLab 3.3", "{78982D7C-D63D-4A3D-AE1F-F58AC007603B}"51 EndProject52 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Charting.Data-3.3", "HeuristicLab.Charting.Data\3.3\HeuristicLab.Charting.Data-3.3.csproj", "{EE956A95-6344-4B01-876F-BE95C5E2F92B}"53 EndProject54 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Logging-3.3", "HeuristicLab.Logging\3.3\HeuristicLab.Logging-3.3.csproj", "{72908B54-D136-4BF2-8474-25AA6CB66C92}"55 EndProject56 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Operators.Programmable-3.3", "HeuristicLab.Operators.Programmable\3.3\HeuristicLab.Operators.Programmable-3.3.csproj", "{6A5F8C2D-B0C3-4B36-BC20-9B1A91EE6DB6}"57 EndProject58 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Selection.OffspringSelection-3.3", "HeuristicLab.Selection.OffspringSelection\3.3\HeuristicLab.Selection.OffspringSelection-3.3.csproj", "{81609E8A-9757-4865-8B89-0B6603F769E8}"59 EndProject60 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.SGA-3.3", "HeuristicLab.SGA\3.3\HeuristicLab.SGA-3.3.csproj", "{4C3305C4-E440-4EAD-B218-68D77AE51543}"61 EndProject62 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.TestFunctions-3.3", "HeuristicLab.TestFunctions\3.3\HeuristicLab.TestFunctions-3.3.csproj", "{55E23C37-F4F8-4B20-89B3-1B8B59050CE2}"63 EndProject64 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.ThreadParallelEngine-3.3", "HeuristicLab.ThreadParallelEngine\3.3\HeuristicLab.ThreadParallelEngine-3.3.csproj", "{C2E99CCE-9FB0-456F-9BA0-57900E4AA799}"65 EndProject66 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.OptimizationFrontend-3.3", "HeuristicLab.OptimizationFrontend\3.3\HeuristicLab.OptimizationFrontend-3.3.csproj", "{BEE2B944-7F12-42CC-95A0-6EFB837FDA00}"67 EndProject68 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.DataAnalysis-3.3", "HeuristicLab.DataAnalysis\3.3\HeuristicLab.DataAnalysis-3.3.csproj", "{6AD536AE-B4CC-4424-B0A2-20CECE88CE57}"69 EndProject70 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP-3.4", "HeuristicLab.GP\3.4\HeuristicLab.GP-3.4.csproj", "{DA0D505A-2149-4E3C-B220-5724DE26EB59}"71 EndProject72 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.GP.StructureIdentification-3.4", "HeuristicLab.GP.StructureIdentification\3.4\HeuristicLab.GP.StructureIdentification-3.4.csproj", "{4BA6068B-647C-454D-AED1-F4833034A476}"73 EndProject74 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Modeling-3.3", "HeuristicLab.Modeling\3.3\HeuristicLab.Modeling-3.3.csproj", "{3A5ACA94-47A7-47D6-B644-2B8A7503FCCC}"75 EndProject76 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinFormsUI", "WinFormsUI\WinFormsUI.csproj", "{C75532C4-765B-418E-B09B-46D36B2ABDB1}"77 EndProject78 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Common-3.2", "HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj", "{1FC004FC-59AF-4249-B1B6-FF25873A20E4}"79 EndProject80 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.BackgroundProcessing-3.2", "HeuristicLab.BackgroundProcessing\3.2\HeuristicLab.BackgroundProcessing-3.2.csproj", "{589BECAE-69B0-4EB1-8C06-C073531762B7}"81 EndProject82 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.MainForm-3.2", "HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj", "{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}"83 81 EndProject 84 82 Global … … 104 102 EndGlobalSection 105 103 GlobalSection(ProjectConfigurationPlatforms) = postSolution 106 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86107 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|Any CPU.Build.0 = Debug|x86108 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x64.ActiveCfg = Debug|x64109 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x86.ActiveCfg = Debug|x86110 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x86.Build.0 = Debug|x86111 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU112 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|Any CPU.Build.0 = Debug|Any CPU113 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x64.ActiveCfg = Debug|x64114 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x64.Build.0 = Debug|x64115 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x86.ActiveCfg = Debug|x86116 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x86.Build.0 = Debug|x86117 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU118 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|Any CPU.Build.0 = Debug|Any CPU119 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x64.ActiveCfg = Debug|x64120 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x86.ActiveCfg = Debug|x86121 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x86.Build.0 = Debug|x86122 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|Any CPU.ActiveCfg = Release|Any CPU123 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|Any CPU.Build.0 = Release|Any CPU124 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x64.ActiveCfg = Release|x64125 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x64.Build.0 = Release|x64126 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x86.ActiveCfg = Release|x86127 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x86.Build.0 = Release|x86128 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU129 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU130 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x64.ActiveCfg = Debug|x64131 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x64.Build.0 = Debug|x64132 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x86.ActiveCfg = Debug|x86133 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x86.Build.0 = Debug|x86134 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU135 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU136 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x64.ActiveCfg = Debug|x64137 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x64.Build.0 = Debug|x64138 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x86.ActiveCfg = Debug|x86139 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x86.Build.0 = Debug|x86140 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86141 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x64.ActiveCfg = Debug|x64142 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x86.ActiveCfg = Debug|x86143 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU144 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|Any CPU.Build.0 = Debug|Any CPU145 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x64.ActiveCfg = Debug|x64146 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x64.Build.0 = Debug|x64147 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x86.ActiveCfg = Debug|x86148 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x86.Build.0 = Debug|x86149 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU150 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x64.ActiveCfg = Debug|x64151 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x86.ActiveCfg = Debug|x86152 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|Any CPU.ActiveCfg = Release|Any CPU153 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|Any CPU.Build.0 = Release|Any CPU154 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x64.ActiveCfg = Release|x64155 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x64.Build.0 = Release|x64156 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.ActiveCfg = Release|x86157 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.Build.0 = Release|x86158 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU159 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU160 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x64.ActiveCfg = Debug|x64161 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x64.Build.0 = Debug|x64162 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x86.ActiveCfg = Debug|x86163 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x86.Build.0 = Debug|x86164 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU165 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x64.ActiveCfg = Debug|x64166 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x64.Build.0 = Debug|x64167 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x86.ActiveCfg = Debug|x86168 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x86.Build.0 = Debug|x86169 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|Any CPU.ActiveCfg = Debug|x86170 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|x64.ActiveCfg = Debug|x64171 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.CEDMA Debug|x86.ActiveCfg = Debug|x86172 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU173 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|Any CPU.Build.0 = Debug|Any CPU174 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|x64.ActiveCfg = Debug|x64175 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|x64.Build.0 = Debug|x64176 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|x86.ActiveCfg = Debug|x86177 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Debug|x86.Build.0 = Debug|x86178 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU179 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Modeling Debug|x64.ActiveCfg = Debug|x64180 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Modeling Debug|x86.ActiveCfg = Debug|x86181 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|Any CPU.ActiveCfg = Release|Any CPU182 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|Any CPU.Build.0 = Release|Any CPU183 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|x64.ActiveCfg = Release|x64184 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|x64.Build.0 = Release|x64185 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|x86.ActiveCfg = Release|x86186 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Release|x86.Build.0 = Release|x86187 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU188 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU189 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|x64.ActiveCfg = Debug|x64190 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|x64.Build.0 = Debug|x64191 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|x86.ActiveCfg = Debug|x86192 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.v3.2 Debug|x86.Build.0 = Debug|x86193 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU194 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|x64.ActiveCfg = Debug|x64195 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|x64.Build.0 = Debug|x64196 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|x86.ActiveCfg = Debug|x86197 {D3F92C1F-42B4-4EFB-9E73-B64FD3428ADE}.Visualization Debug|x86.Build.0 = Debug|x86198 104 {102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU 199 105 {102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU … … 1163 1069 {3BD61258-31DA-4B09-89C0-4F71FEF5F05A}.Visualization Debug|x86.ActiveCfg = Debug|x86 1164 1070 {3BD61258-31DA-4B09-89C0-4F71FEF5F05A}.Visualization Debug|x86.Build.0 = Debug|x86 1071 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU 1072 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU 1073 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x64.ActiveCfg = Debug|x64 1074 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x64.Build.0 = Debug|x64 1075 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x86.ActiveCfg = Debug|x86 1076 {94186A6A-5176-4402-AE83-886557B53CCA}.CEDMA Debug|x86.Build.0 = Debug|x86 1077 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 1078 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|Any CPU.Build.0 = Debug|Any CPU 1079 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x64.ActiveCfg = Debug|x64 1080 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x64.Build.0 = Debug|x64 1081 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x86.ActiveCfg = Debug|x86 1082 {94186A6A-5176-4402-AE83-886557B53CCA}.Debug|x86.Build.0 = Debug|x86 1083 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU 1084 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|Any CPU.Build.0 = Debug|Any CPU 1085 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x64.ActiveCfg = Debug|x64 1086 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x64.Build.0 = Debug|x64 1087 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x86.ActiveCfg = Debug|x86 1088 {94186A6A-5176-4402-AE83-886557B53CCA}.Modeling Debug|x86.Build.0 = Debug|x86 1089 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|Any CPU.ActiveCfg = Release|Any CPU 1090 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|Any CPU.Build.0 = Release|Any CPU 1091 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x64.ActiveCfg = Release|x64 1092 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x64.Build.0 = Release|x64 1093 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.ActiveCfg = Release|x86 1094 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.Build.0 = Release|x86 1095 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU 1096 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU 1097 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x64.ActiveCfg = Debug|x64 1098 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x64.Build.0 = Debug|x64 1099 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x86.ActiveCfg = Debug|x86 1100 {94186A6A-5176-4402-AE83-886557B53CCA}.v3.2 Debug|x86.Build.0 = Debug|x86 1101 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU 1102 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU 1103 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x64.ActiveCfg = Debug|x64 1104 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x64.Build.0 = Debug|x64 1105 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x86.ActiveCfg = Debug|x86 1106 {94186A6A-5176-4402-AE83-886557B53CCA}.Visualization Debug|x86.Build.0 = Debug|x86 1107 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|Any CPU.ActiveCfg = Debug|Any CPU 1108 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|Any CPU.Build.0 = Debug|Any CPU 1109 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x64.ActiveCfg = Debug|x64 1110 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x64.Build.0 = Debug|x64 1111 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x86.ActiveCfg = Debug|x86 1112 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.CEDMA Debug|x86.Build.0 = Debug|x86 1113 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 1114 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|Any CPU.Build.0 = Debug|Any CPU 1115 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x64.ActiveCfg = Debug|x64 1116 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x64.Build.0 = Debug|x64 1117 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x86.ActiveCfg = Debug|x86 1118 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Debug|x86.Build.0 = Debug|x86 1119 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|Any CPU.ActiveCfg = Debug|Any CPU 1120 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|Any CPU.Build.0 = Debug|Any CPU 1121 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x64.ActiveCfg = Debug|x64 1122 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x64.Build.0 = Debug|x64 1123 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x86.ActiveCfg = Debug|x86 1124 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Modeling Debug|x86.Build.0 = Debug|x86 1125 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|Any CPU.ActiveCfg = Release|Any CPU 1126 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|Any CPU.Build.0 = Release|Any CPU 1127 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x64.ActiveCfg = Release|x64 1128 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x64.Build.0 = Release|x64 1129 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x86.ActiveCfg = Release|x86 1130 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Release|x86.Build.0 = Release|x86 1131 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|Any CPU.ActiveCfg = Debug|Any CPU 1132 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|Any CPU.Build.0 = Debug|Any CPU 1133 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x64.ActiveCfg = Debug|x64 1134 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x64.Build.0 = Debug|x64 1135 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x86.ActiveCfg = Debug|x86 1136 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.v3.2 Debug|x86.Build.0 = Debug|x86 1137 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|Any CPU.ActiveCfg = Debug|Any CPU 1138 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|Any CPU.Build.0 = Debug|Any CPU 1139 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x64.ActiveCfg = Debug|x64 1140 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x64.Build.0 = Debug|x64 1141 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x86.ActiveCfg = Debug|x86 1142 {623FB817-8371-4A9A-A491-4DECC87B2BBB}.Visualization Debug|x86.Build.0 = Debug|x86 1165 1143 EndGlobalSection 1166 1144 GlobalSection(SolutionProperties) = preSolution
Note: See TracChangeset
for help on using the changeset viewer.