- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.SequentialEngine/3.3/HeuristicLab.SequentialEngine-3.3.csproj
r11623 r16723 18 18 <UpgradeBackupLocation> 19 19 </UpgradeBackupLocation> 20 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>20 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 21 21 <TargetFrameworkProfile> 22 22 </TargetFrameworkProfile> … … 162 162 </BootstrapperPackage> 163 163 </ItemGroup> 164 <ItemGroup> 165 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 166 <SpecificVersion>False</SpecificVersion> 167 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 168 <Private>False</Private> 169 </Reference> 170 </ItemGroup> 164 171 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 165 172 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/2521_ProblemRefactoring/HeuristicLab.SequentialEngine/3.3/Plugin.cs.frame
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 33 33 [PluginDependency("HeuristicLab.Common", "3.3")] 34 34 [PluginDependency("HeuristicLab.Core", "3.3")] 35 [PluginDependency("HeuristicLab. Persistence", "3.3")]35 [PluginDependency("HeuristicLab.Attic", "1.0")] 36 36 public class HeuristicLabSequentialEnginePlugin : PluginBase { 37 37 } -
branches/2521_ProblemRefactoring/HeuristicLab.SequentialEngine/3.3/Properties/AssemblyInfo.cs.frame
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/2521_ProblemRefactoring/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.SequentialEngine { … … 30 30 /// Engine for sequential execution of algorithms. 31 31 /// </summary> 32 [Storable Class]32 [StorableType("2100B28B-18B3-41F5-B8A2-1DD009ADF4A9")] 33 33 [Item("Sequential Engine", "Engine for sequential execution of algorithms.")] 34 34 public class SequentialEngine : Engine { 35 35 [StorableConstructor] 36 protected SequentialEngine( bool deserializing) : base(deserializing) { }36 protected SequentialEngine(StorableConstructorFlag _) : base(_) { } 37 37 protected SequentialEngine(SequentialEngine original, Cloner cloner) : base(original, cloner) { } 38 38 public SequentialEngine() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.