Changeset 638
- Timestamp:
- 10/08/08 22:54:02 (16 years ago)
- Location:
- branches/HL-3.2-MonoMigration
- Files:
-
- 21 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/HL-3.2-MonoMigration/HeuristicLab.CEDMA.Server/ServerForm.cs
r556 r638 46 46 private Database database; 47 47 private Store store; 48 private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3"; 48 //private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/test.db3"; 49 private static readonly string dbFile = AppDomain.CurrentDomain.BaseDirectory + "/debugging.db3"; 49 50 private static readonly string connectionString = "Data Source=\"" + dbFile + "\";Pooling=False"; 50 51 private static readonly string rdfFile = AppDomain.CurrentDomain.BaseDirectory + "rdf_store.db3"; … … 86 87 InitDatabase(); 87 88 InitRdfStore(); 88 InitRunScheduler();89 //InitRunScheduler(); 89 90 90 91 host = new ServiceHost(database, new Uri(addressTextBox.Text)); -
branches/HL-3.2-MonoMigration/HeuristicLab.Core/OperatorLibraryEditor.cs
r2 r638 162 162 } 163 163 164 165 164 #region TreeView Events 166 165 private void operatorsTreeView_AfterSelect(object sender, TreeViewEventArgs e) { … … 238 237 #endregion 239 238 240 241 239 #region Mouse Events 242 240 private void operatorsTreeView_MouseDown(object sender, MouseEventArgs e) { … … 249 247 } 250 248 #endregion 251 252 249 253 250 #region Context Menu Events -
branches/HL-3.2-MonoMigration/HeuristicLab.Core/ScopeView.Designer.cs
r2 r638 32 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 33 33 protected override void Dispose(bool disposing) { 34 if(scopesTreeView.Nodes.Count > 0) {35 RemoveTreeNode(scopesTreeView.Nodes[0]);36 scopesTreeView.Nodes.Clear();37 }38 if 34 //if(scopesTreeView.Nodes.Count > 0) { 35 // RemoveTreeNode(scopesTreeView.Nodes[0]); 36 // scopesTreeView.Nodes.Clear(); 37 //} 38 if(disposing && (components != null)) { 39 39 components.Dispose(); 40 40 } -
branches/HL-3.2-MonoMigration/HeuristicLab.Core/VariablesScopeView.cs
r2 r638 73 73 variablesListView.Items.Clear(); 74 74 foreach (IVariable variable in Scope.Variables) { 75 ListViewItem item = new ListViewItem(); 76 item.Text = variable.Name; 77 item.Tag = variable; 78 variablesListView.Items.Add(item); 79 variable.NameChanged += new EventHandler(Variable_NameChanged); 75 if (!variable.Name.StartsWith("##")) { 76 ListViewItem item = new ListViewItem(); 77 item.Text = variable.Name; 78 item.Tag = variable; 79 variablesListView.Items.Add(item); 80 variable.NameChanged += new EventHandler(Variable_NameChanged); 81 } 80 82 } 81 83 } … … 157 159 Invoke(new OnVariableEventDelegate(Scope_VariableAdded), sender, e); 158 160 else { 159 ListViewItem item = new ListViewItem(); 160 item.Text = e.Variable.Name; 161 item.Tag = e.Variable; 162 variablesListView.Items.Add(item); 163 e.Variable.NameChanged += new EventHandler(Variable_NameChanged); 161 if (!e.Variable.Name.StartsWith("##")) { 162 ListViewItem item = new ListViewItem(); 163 item.Text = e.Variable.Name; 164 item.Tag = e.Variable; 165 variablesListView.Items.Add(item); 166 e.Variable.NameChanged += new EventHandler(Variable_NameChanged); 167 } 164 168 } 165 169 } … … 168 172 Invoke(new OnVariableEventDelegate(Scope_VariableRemoved), sender, e); 169 173 else { 170 ListViewItem itemToDelete = null; 171 foreach (ListViewItem item in variablesListView.Items) { 172 if (item.Tag == e.Variable) 173 itemToDelete = item; 174 } 175 e.Variable.NameChanged -= new EventHandler(Variable_NameChanged); 176 variablesListView.Items.Remove(itemToDelete); 174 if (!e.Variable.Name.StartsWith("##")) { 175 ListViewItem itemToDelete = null; 176 foreach (ListViewItem item in variablesListView.Items) { 177 if (item.Tag == e.Variable) 178 itemToDelete = item; 179 } 180 e.Variable.NameChanged -= new EventHandler(Variable_NameChanged); 181 variablesListView.Items.Remove(itemToDelete); 182 } 177 183 } 178 184 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/ApplicationInfo.cs
r242 r638 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Runtime.Serialization; 25 26 26 27 namespace HeuristicLab.PluginInfrastructure { … … 69 70 set { pluginType = value; } 70 71 } 72 73 public override string ToString() { 74 return Name + " " + Version + " " + Description + " " + pluginAssembly + " " + pluginType; 75 } 71 76 } 72 77 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/BaseClasses/ApplicationBase.cs
r242 r638 34 34 public ApplicationBase() { 35 35 ReadAttributes(); 36 Run(); 36 37 } 37 38 -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/ClassInfoAttribute.cs
r242 r638 59 59 60 60 public ClassInfoAttribute() {} 61 62 public ClassInfoAttribute(string name) { 63 Name = name; 64 } 61 65 } 62 66 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/DiscoveryService.cs
r29 r638 33 33 public PluginInfo[] Plugins { 34 34 get { 35 PluginInfo[] plugins = new PluginInfo[PluginManager.Manager.LoadedPlugins.Count]; 36 PluginManager.Manager.LoadedPlugins.CopyTo(plugins, 0); 37 return plugins; 35 try { 36 PluginInfo[] plugins = new PluginInfo[PluginManager.Manager.LoadedPlugins.Count]; 37 PluginManager.Manager.LoadedPlugins.CopyTo(plugins, 0); 38 return plugins; 39 } catch(Exception ex) { 40 Console.WriteLine(ex); 41 return new PluginInfo[] { }; 42 } 38 43 } 39 44 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/InvalidPluginException.cs
r96 r638 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Runtime.Serialization; 25 26 26 27 namespace HeuristicLab.PluginInfrastructure { 28 [Serializable] 27 29 class InvalidPluginException : Exception { 30 public InvalidPluginException() : base() { } 31 32 public InvalidPluginException(SerializationInfo info, StreamingContext context) : base(info, context) { } 28 33 } 29 34 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/Loader.cs
r535 r638 98 98 return null; 99 99 } 100 100 }; 101 101 allPlugins.Clear(); 102 102 disabledPlugins.Clear(); … … 161 161 } 162 162 } 163 } catch(InvalidPluginException ex) { 164 PluginInfo info = new PluginInfo(); 165 AssemblyName name = assembly.GetName(); 166 info.Name = name.Name; 167 info.Version = name.Version; 168 info.Assemblies.Add(assembly.FullName); 169 info.Files.Add(assembly.Location); 170 info.Message = "Plugin doesn't have necessary meta-information: "; 171 disabledPlugins.Add(info); 163 172 } catch(FileNotFoundException ex) { 164 173 PluginInfo info = new PluginInfo(); … … 198 207 // iterate through all custom attributes and search for named arguments that we are interested in 199 208 foreach(CustomAttributeData attributeData in attributes) { 200 List<CustomAttributeNamedArgument> namedArguments = new List<CustomAttributeNamedArgument>(attributeData.NamedArguments); 201 // if the current attribute contains a named argument with the name "Name" then extract the plugin name 202 CustomAttributeNamedArgument pluginNameArgument = namedArguments.Find(delegate(CustomAttributeNamedArgument arg) { 203 return arg.MemberInfo.Name == "Name"; 204 }); 205 if(pluginNameArgument.MemberInfo != null) { 206 pluginName = (string)pluginNameArgument.TypedValue.Value; 207 } 208 // if the current attribute contains a named argument with the name "Dependency" then extract the dependency 209 // and store it in the list of all dependencies 210 CustomAttributeNamedArgument dependencyNameArgument = namedArguments.Find(delegate(CustomAttributeNamedArgument arg) { 211 return arg.MemberInfo.Name == "Dependency"; 212 }); 213 if(dependencyNameArgument.MemberInfo != null) { 214 pluginDependencies.Add((string)dependencyNameArgument.TypedValue.Value); 215 } 216 // if the current attribute has a named argument "Filename" then find if the argument "Filetype" is also supplied 217 // and if the filetype is Assembly then store the name of the assembly in the list of assemblies 218 CustomAttributeNamedArgument filenameArg = namedArguments.Find(delegate(CustomAttributeNamedArgument arg) { 219 return arg.MemberInfo.Name == "Filename"; 220 }); 221 CustomAttributeNamedArgument filetypeArg = namedArguments.Find(delegate(CustomAttributeNamedArgument arg) { 222 return arg.MemberInfo.Name == "Filetype"; 223 }); 209 CustomAttributeNamedArgument filenameArg; 210 CustomAttributeNamedArgument filetypeArg; 211 foreach(CustomAttributeNamedArgument arg in attributeData.NamedArguments) { 212 if(arg.MemberInfo.Name == "Name") { 213 // if the current attribute contains a named argument with the name "Name" then extract the plugin name 214 pluginName = (string)arg.TypedValue.Value; 215 } else if(arg.MemberInfo.Name == "Dependency") { 216 // if the current attribute contains a named argument with the name "Dependency" then extract the dependency 217 // and store it in the list of all dependencies 218 pluginDependencies.Add((string)arg.TypedValue.Value); 219 } else if(arg.MemberInfo.Name == "Filename") { 220 // if the current attribute has a named argument "Filename" then find if the argument "Filetype" is also supplied 221 // and if the filetype is Assembly then store the name of the assembly in the list of assemblies 222 filenameArg = arg; 223 } else if(arg.MemberInfo.Name == "Filetype") { 224 filetypeArg = arg; 225 } 226 } 224 227 if(filenameArg.MemberInfo != null && filetypeArg.MemberInfo != null) { 225 228 pluginFiles.Add(pluginDir + "/" + (string)filenameArg.TypedValue.Value); … … 229 232 } 230 233 } 231 232 234 // minimal sanity check of the attribute values 233 235 if(pluginName != "" && pluginAssemblies.Count > 0) { … … 393 395 internal void OnDelete(PluginInfo pluginInfo) { 394 396 IPlugin plugin = FindPlugin(pluginInfo); 395 if(plugin !=null) plugin.OnDelete();397 if(plugin != null) plugin.OnDelete(); 396 398 } 397 399 -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/PluginFileAttribute.cs
r5 r638 49 49 50 50 public PluginFileAttribute() { } 51 public PluginFileAttribute(string name, PluginFileType type) { 52 this.Filename = name; 53 this.Filetype = type; 54 } 51 55 } 52 56 } -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/PluginManager.cs
r316 r638 27 27 // must extend MarshalByRefObject because of event passing between Loader and PluginManager (each in it's own AppDomain) 28 28 public class PluginManager : MarshalByRefObject { 29 30 29 // singleton: only one manager allowed in each AppDomain 31 private static PluginManager manager = new PluginManager(); 30 private static readonly PluginManager manager = PluginManager.manager==null?new PluginManager():PluginManager.manager; 31 static PluginManager() { Console.WriteLine("static ctor called "); } 32 32 public static PluginManager Manager { 33 get { return manager; } 33 get { 34 return manager; 35 } 34 36 } 35 37 36 // singleton: only one control manager allowed in each applicat oin (i.e. AppDomain)38 // singleton: only one control manager allowed in each application (i.e. AppDomain) 37 39 private static IControlManager controlManager; 38 40 public static IControlManager ControlManager { … … 71 73 private ICollection<PluginInfo> loadedPlugins; 72 74 public ICollection<PluginInfo> LoadedPlugins { 73 get { return loadedPlugins; } 74 internal set { loadedPlugins = value; } 75 get { 76 Console.WriteLine(AppDomain.CurrentDomain.Id); 77 Console.WriteLine(this.GetHashCode()); 78 if(loadedPlugins != null) Console.WriteLine(loadedPlugins.Count); else Console.WriteLine("Loaded plugins==null!"); 79 return loadedPlugins; 80 } 81 internal set { 82 Console.WriteLine(AppDomain.CurrentDomain.Id); 83 Console.WriteLine(value.Count); 84 Console.WriteLine(this.GetHashCode()); 85 loadedPlugins = new List<PluginInfo>(value); 86 } 75 87 } 76 88 … … 82 94 AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation; 83 95 setup.PrivateBinPath = pluginDir; 84 pluginDomain = AppDomain.CreateDomain("plugin domain", null, setup); 96 pluginDomain = AppDomain.CreateDomain("plugin domain"); 97 pluginDomain.SetupInformation.PrivateBinPath = pluginDir; 85 98 remoteLoader = (Loader)pluginDomain.CreateInstanceAndUnwrap("HeuristicLab.PluginInfraStructure", "HeuristicLab.PluginInfrastructure.Loader"); 86 remoteLoader.PluginAction += delegate(object sender, PluginManagerActionEventArgs args) { if(Action != null) Action(this, args); };99 remoteLoader.PluginAction += new PluginManagerActionEventHandler(remoteLoader_PluginAction); 87 100 remoteLoader.Init(); 88 101 NotifyListeners(PluginManagerAction.Initialized, "-"); 102 } 103 104 public void remoteLoader_PluginAction(object sender, PluginManagerActionEventArgs e) { 105 if(Action != null) Action(this, e); 89 106 } 90 107 … … 98 115 // activate a PluginRunner instance in the application 99 116 // and remotely tell it to start the application 100 117 Console.WriteLine(appInfo); 101 118 NotifyListeners(PluginManagerAction.Starting, appInfo.Name); 102 119 AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation; 103 120 setup.PrivateBinPath = pluginDir; 104 AppDomain applicationDomain = AppDomain.CreateDomain(appInfo.Name + " AppDomain", null, setup); 121 AppDomain applicationDomain = AppDomain.CreateDomain(appInfo.Name + " AppDomain"); 122 applicationDomain.SetupInformation.PrivateBinPath = pluginDir; 105 123 try { 106 124 Runner remoteRunner = (Runner)applicationDomain.CreateInstanceAndUnwrap("HeuristicLab.PluginInfrastructure", "HeuristicLab.PluginInfrastructure.Runner"); … … 108 126 remoteRunner.LoadPlugins(remoteLoader.ActivePlugins); 109 127 NotifyListeners(PluginManagerAction.Initialized, "All plugins"); 110 remoteRunner.Run(appInfo );128 remoteRunner.Run(appInfo.PluginAssembly, appInfo.PluginType); 111 129 } finally { 112 130 // make sure domain is unloaded in all cases -
branches/HL-3.2-MonoMigration/HeuristicLab.PluginInfrastructure/Runner.cs
r29 r638 24 24 using System.Text; 25 25 using System.Reflection; 26 using System.Runtime.Remoting; 27 using System.Runtime.Serialization; 26 28 27 29 namespace HeuristicLab.PluginInfrastructure { … … 29 31 30 32 public void LoadPlugins(ICollection<PluginInfo> plugins) { 33 List<string> loadedNames = new List<string>(); 31 34 foreach(PluginInfo pluginInfo in plugins) { 32 35 foreach(string assemblyName in pluginInfo.Assemblies) { 33 Assembly.LoadFrom(assemblyName); 36 if(!loadedNames.Contains(assemblyName)) { 37 Console.WriteLine("Loading assembly " + assemblyName); 38 loadedNames.Add(assemblyName); 39 Assembly.LoadFrom(assemblyName); 40 } 34 41 } 35 42 } 43 Console.WriteLine(AppDomain.CurrentDomain.Id); 36 44 PluginManager.Manager.LoadedPlugins = plugins; 37 45 } 38 46 39 public void Run( ApplicationInfo appInfo) {40 IApplication runnablePlugin = (IApplication)Activator.CreateInstance(appInfo.PluginAssembly, appInfo.PluginType).Unwrap();41 runnablePlugin.Run();47 public void Run(string assembly, string type) { 48 Console.WriteLine(AppDomain.CurrentDomain.Id); 49 object proxy = AppDomain.CurrentDomain.CreateInstanceAndUnwrap(assembly, type); 42 50 } 43 51 -
branches/HL-3.2-MonoMigration/HeuristicLab.Routing.TSP/HeuristicLab.Routing.TSP.csproj
r582 r638 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 30729</ProductVersion>5 <ProductVersion>9.0.21022</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{9EF75B49-D507-44E0-BC5D-C200FDA53B9B}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.SGA/HeuristicLab.SGA.csproj
r582 r638 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 30729</ProductVersion>5 <ProductVersion>9.0.21022</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{E39AF78A-9692-472B-B061-E2F1B1AB2C92}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.Scheduling.JSSP/HeuristicLab.Scheduling.JSSP.csproj
r582 r638 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 30729</ProductVersion>5 <ProductVersion>9.0.21022</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{4C0EF782-CC94-4A94-BC3E-661D2600559B}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.SequentialEngine/HeuristicLab.SequentialEngine.csproj
r582 r638 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 30729</ProductVersion>5 <ProductVersion>9.0.21022</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{B4BE8E53-BA06-4237-9A01-24255F880201}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.SimOpt/HeuristicLab.SimOpt.csproj
r637 r638 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{32DAA44F-944A-465F-A5C9-1C491EE4976D}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.TestFunctions/HeuristicLab.TestFunctions.csproj
r582 r638 4 4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <ProductVersion>9.0. 30729</ProductVersion>6 <ProductVersion>9.0.21022</ProductVersion> 7 7 <SchemaVersion>2.0</SchemaVersion> 8 8 <ProjectGuid>{9A781B2F-A58D-4270-A28A-3B14BBC11F4A}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab.ThreadParallelEngine/HeuristicLab.ThreadParallelEngine.csproj
r582 r638 3 3 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 4 4 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 5 <ProductVersion>9.0. 30729</ProductVersion>5 <ProductVersion>9.0.21022</ProductVersion> 6 6 <SchemaVersion>2.0</SchemaVersion> 7 7 <ProjectGuid>{6E757D0E-20F9-4E89-AF06-D7DA256870DB}</ProjectGuid> -
branches/HL-3.2-MonoMigration/HeuristicLab/CopyAssemblies.cmd
r622 r638 6 6 mkdir plugins\temp 7 7 mkdir plugins\backup 8 copy %1\HeuristicLab.AdvancedOptimizationFrontend\%2\HeuristicLab.AdvancedOptimizationFrontend-3.2.dll .\plugins9 copy %1\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking.dll .\plugins10 copy %1\HeuristicLab.AdvancedOptimizationFrontend\"WeifenLuo.WinFormsUI.Docking License.txt" .\plugins8 REM copy %1\HeuristicLab.AdvancedOptimizationFrontend\%2\HeuristicLab.AdvancedOptimizationFrontend-3.2.dll .\plugins 9 REM copy %1\HeuristicLab.AdvancedOptimizationFrontend\WeifenLuo.WinFormsUI.Docking.dll .\plugins 10 REM copy %1\HeuristicLab.AdvancedOptimizationFrontend\"WeifenLuo.WinFormsUI.Docking License.txt" .\plugins 11 11 copy %1\HeuristicLab.BitVector\%2\HeuristicLab.BitVector-3.2.dll .\plugins 12 copy %1\HeuristicLab.CEDMA.Charting\%2\HeuristicLab.CEDMA.Charting-3.2.dll .\plugins13 copy %1\HeuristicLab.CEDMA.Core\%2\HeuristicLab.CEDMA.Core-3.2.dll .\plugins14 copy %1\HeuristicLab.CEDMA.DB\%2\HeuristicLab.CEDMA.DB-3.2.dll .\plugins15 copy %1\HeuristicLab.CEDMA.DB\%2\SemWeb.SqliteStore.dll .\plugins16 copy %1\HeuristicLab.CEDMA.DB\%2\SemWeb.dll .\plugins17 copy %1\HeuristicLab.CEDMA.DB.Interfaces\%2\HeuristicLab.CEDMA.DB.Interfaces-3.2.dll .\plugins18 copy %1\HeuristicLab.CEDMA.Operators\%2\HeuristicLab.CEDMA.Operators-3.2.dll .\plugins19 copy %1\HeuristicLab.CEDMA.Server\%2\HeuristicLab.CEDMA.Server-3.2.dll .\plugins12 REM copy %1\HeuristicLab.CEDMA.Charting\%2\HeuristicLab.CEDMA.Charting-3.2.dll .\plugins 13 REM copy %1\HeuristicLab.CEDMA.Core\%2\HeuristicLab.CEDMA.Core-3.2.dll .\plugins 14 REM copy %1\HeuristicLab.CEDMA.DB\%2\HeuristicLab.CEDMA.DB-3.2.dll .\plugins 15 REM copy %1\HeuristicLab.CEDMA.DB\%2\SemWeb.SqliteStore.dll .\plugins 16 REM copy %1\HeuristicLab.CEDMA.DB\%2\SemWeb.dll .\plugins 17 REM copy %1\HeuristicLab.CEDMA.DB.Interfaces\%2\HeuristicLab.CEDMA.DB.Interfaces-3.2.dll .\plugins 18 REM copy %1\HeuristicLab.CEDMA.Operators\%2\HeuristicLab.CEDMA.Operators-3.2.dll .\plugins 19 REM copy %1\HeuristicLab.CEDMA.Server\%2\HeuristicLab.CEDMA.Server-3.2.dll .\plugins 20 20 copy %1\HeuristicLab.Charting\%2\HeuristicLab.Charting-3.2.dll .\plugins 21 21 copy %1\HeuristicLab.Charting.Data\%2\HeuristicLab.Charting.Data-3.2.dll .\plugins … … 26 26 copy %1\HeuristicLab.Data\%2\HeuristicLab.Data-3.2.dll .\plugins 27 27 copy %1\HeuristicLab.DataAnalysis\%2\HeuristicLab.DataAnalysis-3.2.dll .\plugins 28 copy %1\HeuristicLab.DistributedEngine\%2\HeuristicLab.DistributedEngine-3.2.dll .\plugins28 REM copy %1\HeuristicLab.DistributedEngine\%2\HeuristicLab.DistributedEngine-3.2.dll .\plugins 29 29 copy %1\HeuristicLab.Evolutionary\%2\HeuristicLab.Evolutionary-3.2.dll .\plugins 30 30 copy %1\HeuristicLab.Functions\%2\HeuristicLab.Functions-3.2.dll .\plugins 31 copy %1\HeuristicLab.Grid\%2\HeuristicLab.Grid-3.2.dll .\plugins31 REM copy %1\HeuristicLab.Grid\%2\HeuristicLab.Grid-3.2.dll .\plugins 32 32 copy %1\HeuristicLab.Logging\%2\HeuristicLab.Logging-3.2.dll .\plugins 33 33 copy %1\HeuristicLab.Operators\%2\HeuristicLab.Operators-3.2.dll .\plugins 34 34 copy %1\HeuristicLab.Operators.Metaprogramming\%2\HeuristicLab.Operators.Metaprogramming-3.2.dll .\plugins 35 copy %1\HeuristicLab.Operators.Programmable\%2\HeuristicLab.Operators.Programmable-3.2.dll .\plugins35 REM copy %1\HeuristicLab.Operators.Programmable\%2\HeuristicLab.Operators.Programmable-3.2.dll .\plugins 36 36 copy %1\HeuristicLab.Operators.Stopwatch\%2\HeuristicLab.Operators.Stopwatch-3.2.dll .\plugins 37 37 copy %1\HeuristicLab.OptimizationFrontend\%2\HeuristicLab.OptimizationFrontend-3.2.dll .\plugins … … 46 46 copy %1\HeuristicLab.SGA\%2\HeuristicLab.SGA-3.2.dll .\plugins 47 47 copy %1\HeuristicLab.SimOpt\%2\HeuristicLab.SimOpt-3.2.dll .\plugins 48 copy %1\HeuristicLab.SQLite\%2\HeuristicLab.SQLite-3.2.dll .\plugins49 copy %1\HeuristicLab.SQLite\System.Data.SQLite.dll .\plugins50 copy %1\HeuristicLab.SQLite\"SQLite License.txt" .\plugins51 copy %1\HeuristicLab.SQLite\SQLite.NET.chm .\plugins48 REM copy %1\HeuristicLab.SQLite\%2\HeuristicLab.SQLite-3.2.dll .\plugins 49 REM copy %1\HeuristicLab.SQLite\System.Data.SQLite.dll .\plugins 50 REM copy %1\HeuristicLab.SQLite\"SQLite License.txt" .\plugins 51 REM copy %1\HeuristicLab.SQLite\SQLite.NET.chm .\plugins 52 52 copy %1\HeuristicLab.StructureIdentification\%2\HeuristicLab.StructureIdentification-3.2.dll .\plugins 53 53 copy %1\HeuristicLab.TestFunctions\%2\HeuristicLab.TestFunctions-3.2.dll .\plugins
Note: See TracChangeset
for help on using the changeset viewer.