Changeset 4650
- Timestamp:
- 10/28/10 15:18:25 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r4635 r4650 125 125 <DependentUpon>BatchRunView.cs</DependentUpon> 126 126 </Compile> 127 <Compile Include="CreateExperimentDialog.cs">128 <SubType>Form</SubType>129 </Compile>130 <Compile Include="CreateExperimentDialog.Designer.cs">131 <DependentUpon>CreateExperimentDialog.cs</DependentUpon>132 </Compile>133 127 <Compile Include="RunCollectionBoxPlotView.cs"> 134 128 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.Designer.cs
r4648 r4650 20 20 #endregion 21 21 22 namespace HeuristicLab.Optimiz ation.Views{22 namespace HeuristicLab.Optimizer { 23 23 partial class CreateExperimentDialog { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Optimizer/3.3/CreateExperimentDialog.cs
r4648 r4650 28 28 using System.Text; 29 29 using System.Windows.Forms; 30 using HeuristicLab.Optimization; 30 31 31 namespace HeuristicLab.Optimiz ation.Views{32 namespace HeuristicLab.Optimizer { 32 33 public partial class CreateExperimentDialog : Form { 33 34 private IAlgorithm algorithm; -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLab.Optimizer-3.3.csproj
r4496 r4650 112 112 <EmbeddedResource Include="Documents\GA_VRP.hl" /> 113 113 <None Include="HeuristicLabOptimizerPlugin.cs.frame" /> 114 <Compile Include="CreateExperimentDialog.cs"> 115 <SubType>Form</SubType> 116 </Compile> 117 <Compile Include="CreateExperimentDialog.Designer.cs"> 118 <DependentUpon>CreateExperimentDialog.cs</DependentUpon> 119 </Compile> 114 120 <Compile Include="FileManager.cs" /> 115 121 <Compile Include="ChartControlsWarning.cs"> … … 180 186 <Name>HeuristicLab.Clients.Common-3.3</Name> 181 187 </ProjectReference> 188 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 189 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project> 190 <Name>HeuristicLab.Collections-3.3</Name> 191 </ProjectReference> 182 192 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj"> 183 193 <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project> … … 203 213 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 204 214 <Name>HeuristicLab.MainForm-3.3</Name> 205 </ProjectReference>206 <ProjectReference Include="..\..\HeuristicLab.Optimization.Views\3.3\HeuristicLab.Optimization.Views-3.3.csproj">207 <Project>{662B4B15-8F4D-4AE5-B3EB-D91C215F5AF2}</Project>208 <Name>HeuristicLab.Optimization.Views-3.3</Name>209 215 </ProjectReference> 210 216 <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj"> -
trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerPlugin.cs.frame
r4497 r4650 26 26 [Plugin("HeuristicLab.Optimizer", "3.3.1.$WCREV$")] 27 27 [PluginFile("HeuristicLab.Optimizer-3.3.dll", PluginFileType.Assembly)] 28 [PluginDependency("HeuristicLab.Persistence", "3.3")]29 28 [PluginDependency("HeuristicLab.Clients.Common", "3.3")] 29 [PluginDependency("HeuristicLab.Collections", "3.3")] 30 30 [PluginDependency("HeuristicLab.Common", "3.3")] 31 31 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] … … 35 35 [PluginDependency("HeuristicLab.MainForm.WindowsForms", "3.3")] 36 36 [PluginDependency("HeuristicLab.Optimization", "3.3")] 37 [PluginDependency("HeuristicLab. Optimization.Views", "3.3")]37 [PluginDependency("HeuristicLab.Persistence", "3.3")] 38 38 public class HeuristicLabOptimizerPlugin : PluginBase { 39 39 } -
trunk/sources/HeuristicLab.Optimizer/3.3/MenuItems/CreateExperimentMenuItem.cs
r4104 r4650 25 25 using HeuristicLab.MainForm; 26 26 using HeuristicLab.Optimization; 27 using HeuristicLab.Optimization.Views;28 27 29 28 namespace HeuristicLab.Optimizer.MenuItems {
Note: See TracChangeset
for help on using the changeset viewer.