Changeset 465
- Timestamp:
- 08/07/08 09:06:56 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Operators/HeuristicLab.CEDMA.Operators.csproj
r462 r465 54 54 </ItemGroup> 55 55 <ItemGroup> 56 <Compile Include="SequentialComposer.cs" />57 <Compile Include="DoubleRangeVariableInjector.cs" />58 56 <Compile Include="ScopeResultWriter.cs" /> 59 57 <Compile Include="HeuristicLabCedmaOperatorsPlugin.cs" /> … … 77 75 <Name>HeuristicLab.Data</Name> 78 76 </ProjectReference> 79 <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">80 <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>81 <Name>HeuristicLab.Operators</Name>82 </ProjectReference>83 77 <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 84 78 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
trunk/sources/HeuristicLab.CEDMA.Operators/HeuristicLabCedmaOperatorsPlugin.cs
r462 r465 31 31 [Dependency(Dependency = "HeuristicLab.Core")] 32 32 [Dependency(Dependency = "HeuristicLab.Data")] 33 [Dependency(Dependency = "HeuristicLab.Operators")]34 33 public class HeuristicLabCedmaOperatorsPlugin : PluginBase { 35 34 } -
trunk/sources/HeuristicLab.Operators.Metaprogramming/DoubleRangeVariableInjector.cs
r462 r465 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Data; 27 using System.Threading;28 using HeuristicLab.CEDMA.DB.Interfaces;29 using System.ServiceModel;30 27 using HeuristicLab.Operators; 31 28 32 namespace HeuristicLab. CEDMA.Operators{29 namespace HeuristicLab.Operators.Metaprogramming { 33 30 public class DoubleRangeVariableInjector: OperatorBase { 34 31 public override string Description { -
trunk/sources/HeuristicLab.Operators.Metaprogramming/HeuristicLab.Operators.Metaprogramming.csproj
r464 r465 50 50 <None Include="HeuristicLab.snk" /> 51 51 <None Include="Properties\AssemblyInfo.frame" /> 52 <Compile Include="DoubleRangeVariableInjector.cs" /> 52 53 <Compile Include="HeuristicLabOperatorsMetaprogrammingPlugin.cs" /> 53 54 <Compile Include="Properties\AssemblyInfo.cs" /> 55 <Compile Include="SequentialComposer.cs" /> 54 56 </ItemGroup> 55 57 <ItemGroup> -
trunk/sources/HeuristicLab.Operators.Metaprogramming/SequentialComposer.cs
r462 r465 25 25 using HeuristicLab.Core; 26 26 using HeuristicLab.Data; 27 using System.Threading;28 using HeuristicLab.CEDMA.DB.Interfaces;29 using System.ServiceModel;30 27 using HeuristicLab.Operators; 31 28 32 namespace HeuristicLab. CEDMA.Operators{29 namespace HeuristicLab.Operators.Metaprogramming { 33 30 public class SequentialComposer: OperatorBase { 34 31 public override string Description {
Note: See TracChangeset
for help on using the changeset viewer.