Changeset 17097 for stable/HeuristicLab.Operators.Programmable
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Operators.Programmable/3.3/HeuristicLab.Operators.Programmable-3.3.csproj
r11920 r17097 18 18 <UpgradeBackupLocation> 19 19 </UpgradeBackupLocation> 20 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>20 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 21 21 <TargetFrameworkProfile> 22 22 </TargetFrameworkProfile> … … 105 105 </PropertyGroup> 106 106 <ItemGroup> 107 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 108 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 109 </Reference> 110 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 111 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre02\lib\net461\HEAL.Attic.dll</HintPath> 112 </Reference> 107 113 <Reference Include="System" /> 108 114 <Reference Include="System.Core"> … … 113 119 </Reference> 114 120 <Reference Include="System.Drawing" /> 115 </ItemGroup> 116 <ItemGroup> 121 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 122 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 123 </Reference> 124 </ItemGroup> 125 <ItemGroup> 126 <None Include="packages.config" /> 117 127 <None Include="Plugin.cs.frame" /> 118 128 <Compile Include="Plugin.cs" /> -
stable/HeuristicLab.Operators.Programmable/3.3/Plugin.cs.frame
r15587 r17097 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. -
stable/HeuristicLab.Operators.Programmable/3.3/ProgrammableOperator.cs
r16832 r17097 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 … … 164 164 165 165 [StorableConstructor] 166 protected ProgrammableOperator(bool deserializing) 167 : base(deserializing) { 166 protected ProgrammableOperator(StorableConstructorFlag _) : base(_) { 168 167 ProgrammableOperator.StaticInitialize(); 169 168 Assemblies = defaultAssemblyDict.ToDictionary(kvp => kvp.Key, kvp => kvp.Value); -
stable/HeuristicLab.Operators.Programmable/3.3/ProgrammableSingleSuccessorOperator.cs
r15584 r17097 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) { -
stable/HeuristicLab.Operators.Programmable/3.3/Properties/AssemblyInfo.cs.frame
r15587 r17097 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. -
stable/HeuristicLab.Operators.Programmable/3.3/packages.config
r16565 r17097 2 2 <packages> 3 3 <package id="Google.Protobuf" version="3.6.1" targetFramework="net461" /> 4 <package id="HEAL.Attic" version="1.0.0-pre0 1" targetFramework="net461" />4 <package id="HEAL.Attic" version="1.0.0-pre02" targetFramework="net461" /> 5 5 <package id="System.Drawing.Common" version="4.5.1" targetFramework="net461" /> 6 6 </packages>
Note: See TracChangeset
for help on using the changeset viewer.