- Timestamp:
- 09/14/12 18:58:15 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 4 edited
- 6 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Optimization.Operators/3.3/HeuristicLab.Optimization.Operators-3.3.csproj
r7704 r8660 105 105 </Reference> 106 106 <Reference Include="System.Data" /> 107 <Reference Include="System.Drawing" /> 107 108 <Reference Include="System.Xml" /> 108 109 </ItemGroup> 109 110 <ItemGroup> 111 <Compile Include="NoSimilarityCalculator.cs" /> 112 <Compile Include="QualitySimilarityCalculator.cs" /> 113 <Compile Include="SingleObjectiveSolutionSimilarityCalculator.cs" /> 110 114 <Compile Include="GeneralizedExponentialDiscreteDoubleValueModifier.cs" /> 111 115 <Compile Include="MultiObjective\CrowdedComparisonSorter.cs" /> … … 114 118 <Compile Include="MultiObjective\FastNonDominatedSort.cs" /> 115 119 <Compile Include="MultiObjective\RankAndCrowdingSorter.cs" /> 120 <Compile Include="SingleObjectivePathRelinker.cs" /> 116 121 <Compile Include="Plugin.cs" /> 122 <Compile Include="ProgrammableAnalyzer.cs" /> 117 123 <Compile Include="ShakingOperator.cs" /> 124 <Compile Include="SolutionSimilarityCalculator.cs" /> 118 125 <Compile Include="UserDefinedCrossover.cs" /> 119 126 <Compile Include="UserDefinedEvaluator.cs" /> … … 163 170 <Private>False</Private> 164 171 </ProjectReference> 172 <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.3\HeuristicLab.Operators.Programmable-3.3.csproj"> 173 <Project>{6A5F8C2D-B0C3-4B36-BC20-9B1A91EE6DB6}</Project> 174 <Name>HeuristicLab.Operators.Programmable-3.3</Name> 175 <Private>False</Private> 176 </ProjectReference> 165 177 <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj"> 166 178 <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project> … … 220 232 --> 221 233 <PropertyGroup> 222 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)234 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 223 235 set ProjectDir=$(ProjectDir) 224 236 set SolutionDir=$(SolutionDir) … … 227 239 call PreBuildEvent.cmd 228 240 </PreBuildEvent> 241 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 242 export ProjectDir=$(ProjectDir) 243 export SolutionDir=$(SolutionDir) 244 245 $SolutionDir/PreBuildEvent.sh 246 </PreBuildEvent> 229 247 </PropertyGroup> 230 248 </Project> -
branches/GP-MoveOperators/HeuristicLab.Optimization.Operators/3.3/Plugin.cs.frame
r7259 r8660 26 26 /// Plugin class for HeuristicLab.Optimization.Operators plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Optimization.Operators", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.Optimization.Operators", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Optimization.Operators-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Collections", "3.3")] … … 33 33 [PluginDependency("HeuristicLab.Data", "3.3")] 34 34 [PluginDependency("HeuristicLab.Operators", "3.3")] 35 [PluginDependency("HeuristicLab.Operators.Programmable", "3.3")] 35 36 [PluginDependency("HeuristicLab.Optimization","3.3")] 36 37 [PluginDependency("HeuristicLab.Parameters", "3.3")] -
branches/GP-MoveOperators/HeuristicLab.Optimization.Operators/3.3/Properties/AssemblyInfo.cs.frame
r7259 r8660 54 54 // by using the '*' as shown below: 55 55 [assembly: AssemblyVersion("3.3.0.0")] 56 [assembly: AssemblyFileVersion("3.3. 6.$WCREV$")]56 [assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset
for help on using the changeset viewer.