Changeset 16565 for trunk/HeuristicLab.DebugEngine
- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.DebugEngine/3.3/DebugEngine.cs
r15583 r16565 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. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.DebugEngine { 30 30 31 [Storable Class]31 [StorableType("BC1A9855-D280-4314-A272-CD2120679F12")] 32 32 [Item("Debug Engine", "Engine for debugging algorithms.")] 33 33 public class DebugEngine : Executable, IEngine { … … 36 36 37 37 [StorableConstructor] 38 protected DebugEngine(bool deserializing) 39 : base(deserializing) { 38 protected DebugEngine(StorableConstructorFlag _) : base(_) { 40 39 InitializeTimer(); 41 40 } -
trunk/HeuristicLab.DebugEngine/3.3/ExecutionStack.cs
r15583 r16565 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. … … 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.DebugEngine { 30 30 31 [Storable Class]31 [StorableType("FE481B4B-BA25-4889-AAC7-6C88D852D971")] 32 32 public class ExecutionStack : ObservableList<IOperation>, IContent, IDeepCloneable { 33 33 … … 37 37 38 38 [StorableConstructor] 39 protected ExecutionStack( bool deserializing) : base(deserializing) { }39 protected ExecutionStack(StorableConstructorFlag _) : base(_) { } 40 40 protected ExecutionStack(ExecutionStack original, Cloner cloner) { 41 41 cloner.RegisterClonedObject(original, this); -
trunk/HeuristicLab.DebugEngine/3.3/HeuristicLab.DebugEngine-3.3.csproj
r11623 r16565 11 11 <RootNamespace>HeuristicLab.DebugEngine</RootNamespace> 12 12 <AssemblyName>HeuristicLab.DebugEngine-3.3</AssemblyName> 13 <TargetFrameworkVersion>v4. 5</TargetFrameworkVersion>13 <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion> 14 14 <TargetFrameworkProfile> 15 15 </TargetFrameworkProfile> … … 89 89 </PropertyGroup> 90 90 <ItemGroup> 91 <Reference Include="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"> 92 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 93 </Reference> 94 <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 95 <HintPath>..\..\packages\HEAL.Attic.1.0.0-pre01\lib\netstandard2.0\HEAL.Attic.dll</HintPath> 96 </Reference> 91 97 <Reference Include="System" /> 92 98 <Reference Include="System.Core" /> 93 99 <Reference Include="System.Drawing" /> 100 <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL"> 101 <HintPath>..\..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath> 102 </Reference> 94 103 </ItemGroup> 95 104 <ItemGroup> … … 105 114 <ItemGroup> 106 115 <None Include="HeuristicLab.snk" /> 116 <None Include="packages.config" /> 107 117 <None Include="Plugin.cs.frame" /> 108 118 <None Include="Properties\AssemblyInfo.cs.frame" /> -
trunk/HeuristicLab.DebugEngine/3.3/OperationChangedEventArgs.cs
r15583 r16565 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. -
trunk/HeuristicLab.DebugEngine/3.3/OperationContent.cs
r15583 r16565 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. -
trunk/HeuristicLab.DebugEngine/3.3/OperatorTrace.cs
r15583 r16565 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. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.DebugEngine { 31 31 32 [Storable Class]32 [StorableType("F694C6E8-39EC-4705-AB77-D00147A4D542")] 33 33 public class OperatorTrace : ObservableList<IOperator>, IContent, IDeepCloneable { 34 34 … … 68 68 69 69 [StorableConstructor] 70 protected OperatorTrace( bool deserializing) : base(deserializing) { }70 protected OperatorTrace(StorableConstructorFlag _) : base(_) { } 71 71 72 72 protected OperatorTrace(OperatorTrace original, Cloner cloner) { -
trunk/HeuristicLab.DebugEngine/3.3/Plugin.cs.frame
r15589 r16565 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. -
trunk/HeuristicLab.DebugEngine/3.3/Properties/AssemblyInfo.cs.frame
r15589 r16565 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. -
trunk/HeuristicLab.DebugEngine/3.3/Utils.cs
r15583 r16565 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.