Changeset 2794 for trunk/sources/HeuristicLab.Evolutionary
- Timestamp:
- 02/14/10 05:31:49 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Evolutionary/3.3
- Files:
-
- 1 added
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Evolutionary/3.3/HeuristicLab.Evolutionary-3.3.csproj
r2790 r2794 84 84 <Compile Include="HeuristicLabEvolutionaryPlugin.cs" /> 85 85 <Compile Include="Properties\AssemblyInfo.cs" /> 86 <Compile Include="ChildrenCreator.cs" /> 86 87 </ItemGroup> 87 88 <ItemGroup> … … 90 91 </ItemGroup> 91 92 <ItemGroup> 93 <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj"> 94 <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project> 95 <Name>HeuristicLab.Collections-3.3</Name> 96 </ProjectReference> 92 97 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 93 98 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> … … 101 106 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> 102 107 <Name>HeuristicLab.Operators-3.3</Name> 108 </ProjectReference> 109 <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj"> 110 <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project> 111 <Name>HeuristicLab.Parameters-3.3</Name> 112 </ProjectReference> 113 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 114 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> 115 <Name>HeuristicLab.Persistence-3.3</Name> 103 116 </ProjectReference> 104 117 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> -
trunk/sources/HeuristicLab.Evolutionary/3.3/HeuristicLabEvolutionaryPlugin.cs.frame
r2790 r2794 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Text;25 22 using HeuristicLab.PluginInfrastructure; 26 23 … … 31 28 [Plugin("HeuristicLab.Evolutionary", "3.3.0.$WCREV$")] 32 29 [PluginFile("HeuristicLab.Evolutionary-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Collections", "3.3")] 33 31 [PluginDependency("HeuristicLab.Core", "3.3")] 34 32 [PluginDependency("HeuristicLab.Data", "3.3")] 35 33 [PluginDependency("HeuristicLab.Operators", "3.3")] 34 [PluginDependency("HeuristicLab.Parameters", "3.3")] 35 [PluginDependency("HeuristicLab.Persistence", "3.3")] 36 36 public class HeuristicLabEvolutionaryPlugin : PluginBase { 37 37 }
Note: See TracChangeset
for help on using the changeset viewer.