- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Programmable/3.3/HeuristicLab.Operators.Programmable-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> … … 188 188 <Install>true</Install> 189 189 </BootstrapperPackage> 190 </ItemGroup> 191 <ItemGroup> 192 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 193 <SpecificVersion>False</SpecificVersion> 194 <HintPath>..\..\bin\HEAL.Attic.dll</HintPath> 195 <Private>False</Private> 196 </Reference> 190 197 </ItemGroup> 191 198 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Programmable/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. … … 28 28 [Plugin("HeuristicLab.Operators.Programmable", "3.3.15.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Operators.Programmable-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Attic", "1.0")] 30 31 [PluginDependency("HeuristicLab.Collections", "3.3")] 31 32 [PluginDependency("HeuristicLab.Common", "3.3")] -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.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. … … 34 34 using HeuristicLab.Core; 35 35 using HeuristicLab.Persistence.Auxiliary; 36 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;36 using HEAL.Attic; 37 37 using HeuristicLab.PluginInfrastructure; 38 38 using Microsoft.CSharp; … … 41 41 42 42 [Item("ProgrammableOperator", "An operator that can be programmed for arbitrary needs.")] 43 [Storable Class]43 [StorableType("741279E4-4C38-4D66-B9F1-03E0F8B47A78")] 44 44 public class ProgrammableOperator : Operator, IParameterizedNamedItem, IStorableContent, IProgrammableItem { 45 45 … … 129 129 public void SelectNamespace(string ns) { 130 130 namespaces.Add(ns); 131 OnSignatureChanged();132 131 } 133 132 134 133 public void UnselectNamespace(string ns) { 135 134 namespaces.Remove(ns); 136 OnSignatureChanged();137 135 } 138 136 … … 166 164 167 165 [StorableConstructor] 168 protected ProgrammableOperator(bool deserializing) 169 : base(deserializing) { 166 protected ProgrammableOperator(StorableConstructorFlag _) : base(_) { 170 167 ProgrammableOperator.StaticInitialize(); 171 168 Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value); -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Programmable/3.3/ProgrammableSingleSuccessorOperator.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. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Parameters; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Operators.Programmable { 28 28 29 29 [Item("ProgrammableSingleSuccessorOperator", "An operator that can be programmed for arbitrary needs and handle a single successor.")] 30 [Storable Class]30 [StorableType("61B9FA72-9C6D-46AC-B514-5240D71170D8")] 31 31 public class ProgrammableSingleSuccessorOperator : ProgrammableOperator { 32 32 … … 46 46 47 47 [StorableConstructor] 48 protected ProgrammableSingleSuccessorOperator( bool deserializing) : base(deserializing) { }48 protected ProgrammableSingleSuccessorOperator(StorableConstructorFlag _) : base(_) { } 49 49 protected ProgrammableSingleSuccessorOperator(ProgrammableSingleSuccessorOperator original, Cloner cloner) 50 50 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Operators.Programmable/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.
Note: See TracChangeset
for help on using the changeset viewer.