Changeset 2501 for trunk/sources/HeuristicLab.Optimizer
- Timestamp:
- 11/17/09 01:05:46 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Optimizer/3.3
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r2499 r2501 39 39 <RequiredTargetFramework>3.5</RequiredTargetFramework> 40 40 </Reference> 41 <Reference Include="System.Drawing" /> 41 42 <Reference Include="System.Windows.Forms" /> 42 43 <Reference Include="System.Xml.Linq"> … … 52 53 <Compile Include="HeuristicLabOptimizerApplication.cs" /> 53 54 <Compile Include="HeuristicLabOptimizerPlugin.cs" /> 55 <Compile Include="IOptimizerUserInterfaceItemProvider.cs" /> 54 56 <Compile Include="Properties\AssemblyInfo.cs" /> 55 57 </ItemGroup> … … 59 61 </ItemGroup> 60 62 <ItemGroup> 63 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj"> 64 <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project> 65 <Name>HeuristicLab.Common.Resources-3.2</Name> 66 </ProjectReference> 61 67 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 62 68 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 63 69 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 70 </ProjectReference> 71 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 72 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 73 <Name>HeuristicLab.MainForm-3.2</Name> 64 74 </ProjectReference> 65 75 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerApplication.cs
r2498 r2501 23 23 using System.Collections.Generic; 24 24 using System.Text; 25 using System.Reflection; 25 26 using System.Windows.Forms; 26 27 using HeuristicLab.PluginInfrastructure; 28 using HeuristicLab.Common.Resources; 29 using HeuristicLab.MainForm.WindowsForms; 27 30 28 31 namespace HeuristicLab.Optimizer { … … 30 33 class HeuristicLabOptimizerApplication : ApplicationBase { 31 34 public override void Run() { 32 //Form mainForm = new MainForm(); 33 //PluginManager.ControlManager = (IControlManager)mainForm; 34 //Application.Run(mainForm); 35 DockingMainForm mainForm = new DockingMainForm(typeof(IOptimizerUserInterfaceItemProvider)); 36 mainForm.Title = "HeuristicLab Optimizer " + Assembly.GetExecutingAssembly().GetName().Version.ToString(); 37 mainForm.Icon = Resources.HeuristicLabIcon; 38 Application.Run(mainForm); 35 39 } 36 40 } -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerPlugin.cs
r2498 r2501 28 28 [ClassInfo(Name = "HeuristicLab.Optimizer-3.3")] 29 29 [PluginFile(Filename = "HeuristicLab.Optimizer-3.3.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.Common.Resources-3.2")] 31 [Dependency(Dependency = "HeuristicLab.MainForm-3.2")] 30 32 [Dependency(Dependency = "HeuristicLab.MainForm.WindowsForms-3.2")] 31 33 public class HeuristicLabOptimizerPlugin : PluginBase {
Note: See TracChangeset
for help on using the changeset viewer.