Changeset 13997
- Timestamp:
- 07/05/16 11:57:18 (8 years ago)
- Location:
- branches/thasling/DistributedGA/DistributedGA.Hive
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/thasling/DistributedGA/DistributedGA.Hive/DistributedGA.Hive.csproj
r13957 r13997 18 18 <DebugType>full</DebugType> 19 19 <Optimize>false</Optimize> 20 <OutputPath>..\..\..\..\ stable\bin\</OutputPath>20 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 21 21 <DefineConstants>DEBUG;TRACE</DefineConstants> 22 22 <ErrorReport>prompt</ErrorReport> … … 27 27 <DebugType>pdbonly</DebugType> 28 28 <Optimize>true</Optimize> 29 <OutputPath>..\..\..\..\ stable\bin\</OutputPath>29 <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath> 30 30 <DefineConstants>TRACE</DefineConstants> 31 31 <ErrorReport>prompt</ErrorReport> … … 42 42 </PropertyGroup> 43 43 <ItemGroup> 44 <Reference Include="HeuristicLab.Clients.Hive-3.3">45 <HintPath>..\..\..\stable\bin\HeuristicLab.Clients.Hive-3.3.dll</HintPath>46 <Private>False</Private>47 </Reference>48 44 <Reference Include="HeuristicLab.Collections-3.3"> 49 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.Collections-3.3.dll</HintPath>45 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath> 50 46 <Private>False</Private> 51 47 </Reference> 52 48 <Reference Include="HeuristicLab.Common-3.3"> 53 <HintPath>..\..\..\..\stable\bin\HeuristicLab.Common-3.3.dll</HintPath> 49 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath> 50 <Private>False</Private> 54 51 </Reference> 55 52 <Reference Include="HeuristicLab.Core-3.3"> 56 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.Core-3.3.dll</HintPath>53 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath> 57 54 <Private>False</Private> 58 55 </Reference> 59 56 <Reference Include="HeuristicLab.Data-3.3"> 60 <HintPath>..\..\..\..\stable\bin\HeuristicLab.Data-3.3.dll</HintPath> 61 <Private>False</Private> 62 </Reference> 63 <Reference Include="HeuristicLab.Hive-3.3"> 64 <HintPath>..\..\..\..\stable\bin\HeuristicLab.Hive-3.3.dll</HintPath> 57 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath> 65 58 <Private>False</Private> 66 59 </Reference> 67 60 <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 68 61 <SpecificVersion>False</SpecificVersion> 69 <HintPath>..\..\..\..\stable\bin\HeuristicLab.Operators-3.3.dll</HintPath> 62 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath> 63 <Private>False</Private> 70 64 </Reference> 71 65 <Reference Include="HeuristicLab.Optimization-3.3"> 72 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.Optimization-3.3.dll</HintPath>66 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath> 73 67 <Private>False</Private> 74 68 </Reference> 75 69 <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 76 70 <SpecificVersion>False</SpecificVersion> 77 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.Parameters-3.3.dll</HintPath>71 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath> 78 72 <Private>False</Private> 79 73 </Reference> 80 74 <Reference Include="HeuristicLab.Persistence-3.3"> 81 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.Persistence-3.3.dll</HintPath>75 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath> 82 76 <Private>False</Private> 83 77 </Reference> 84 78 <Reference Include="HeuristicLab.PluginInfrastructure-3.3"> 85 <HintPath>..\..\..\..\ stable\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>79 <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath> 86 80 <Private>False</Private> 87 81 </Reference> … … 89 83 <Reference Include="System.Core" /> 90 84 <Reference Include="System.Drawing" /> 91 <Reference Include="System.ServiceModel" />92 <Reference Include="System.Xml.Linq" />93 <Reference Include="System.Data.DataSetExtensions" />94 <Reference Include="Microsoft.CSharp" />95 <Reference Include="System.Data" />96 <Reference Include="System.Xml" />97 85 </ItemGroup> 98 86 <ItemGroup> -
branches/thasling/DistributedGA/DistributedGA.Hive/P2PMigrationAnalyzer.cs
r13982 r13997 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Data.SqlTypes;25 24 using System.IO; 26 using System.ServiceModel.Configuration; 27 using System.Threading; 28 using DistributedGA.Core.Domain; 25 29 26 using DistributedGA.Core.Implementation; 30 27 using DistributedGA.Core.Interface; 31 28 using DistributedGA.Hive; 32 using HeuristicLab.Clients.Hive;33 29 using HeuristicLab.Common; 34 30 using HeuristicLab.Core; … … 133 129 } 134 130 135 public override void InitializeState() {136 base.InitializeState();137 // init P2P138 if (h == null) {139 //otherwhise old object is not disposed correctly140 Init();141 }142 }143 144 131 private void Init() { 145 132 h = new PeerNetworkMessageHandler();
Note: See TracChangeset
for help on using the changeset viewer.