Free cookie consent management tool by TermsFeed Policy Generator

source: branches/thasling/DistributedGA/DistributedGA.Hive/DistributedGA.Hive.csproj @ 13965

Last change on this file since 13965 was 13957, checked in by thasling, 8 years ago

#2615:
implemented mechanism to check wheter recieved packages are from the same problem instance or not
added several config parameters to P2PMigrationAnalyzer
added new enum for migration strategies

File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{F191E644-1AFC-4825-8897-E79A6ED91B20}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>DistributedGA.Hive</RootNamespace>
11    <AssemblyName>DistributedGA.Hive</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>AnyCPU</PlatformTarget>
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\stable\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <PlatformTarget>AnyCPU</PlatformTarget>
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\..\..\stable\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <StartupObject />
36  </PropertyGroup>
37  <PropertyGroup>
38    <SignAssembly>true</SignAssembly>
39  </PropertyGroup>
40  <PropertyGroup>
41    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
42  </PropertyGroup>
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    <Reference Include="HeuristicLab.Collections-3.3">
49      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Collections-3.3.dll</HintPath>
50      <Private>False</Private>
51    </Reference>
52    <Reference Include="HeuristicLab.Common-3.3">
53      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Common-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.Core-3.3">
56      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Core-3.3.dll</HintPath>
57      <Private>False</Private>
58    </Reference>
59    <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>
65      <Private>False</Private>
66    </Reference>
67    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
68      <SpecificVersion>False</SpecificVersion>
69      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Operators-3.3.dll</HintPath>
70    </Reference>
71    <Reference Include="HeuristicLab.Optimization-3.3">
72      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
73      <Private>False</Private>
74    </Reference>
75    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
76      <SpecificVersion>False</SpecificVersion>
77      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
78      <Private>False</Private>
79    </Reference>
80    <Reference Include="HeuristicLab.Persistence-3.3">
81      <HintPath>..\..\..\..\stable\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
82      <Private>False</Private>
83    </Reference>
84    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
85      <HintPath>..\..\..\..\stable\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
86      <Private>False</Private>
87    </Reference>
88    <Reference Include="System" />
89    <Reference Include="System.Core" />
90    <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  </ItemGroup>
98  <ItemGroup>
99    <Compile Include="MigrationStrategy.cs" />
100    <Compile Include="P2PTask.cs" />
101    <Compile Include="Plugin.cs" />
102    <Compile Include="Properties\AssemblyInfo.cs" />
103    <Compile Include="P2PMigrationAnalyzer.cs" />
104  </ItemGroup>
105  <ItemGroup>
106    <None Include="App.config" />
107    <None Include="HeuristicLab.snk" />
108  </ItemGroup>
109  <ItemGroup>
110    <ProjectReference Include="..\DistributedGA.Core\DistributedGA.Core.csproj">
111      <Project>{02e73f42-bdc9-4a7a-b74f-5879def27320}</Project>
112      <Name>DistributedGA.Core</Name>
113    </ProjectReference>
114  </ItemGroup>
115  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
117       Other similar extension points exist, see Microsoft.Common.targets.
118  <Target Name="BeforeBuild">
119  </Target>
120  <Target Name="AfterBuild">
121  </Target>
122  -->
123</Project>
Note: See TracBrowser for help on using the repository browser.