Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 13997 was 13997, checked in by gkronber, 8 years ago

#2615 removed initState override and updated references to trunk

File size: 5.0 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>..\..\..\..\trunk\sources\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>..\..\..\..\trunk\sources\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.Collections-3.3">
45      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
46      <Private>False</Private>
47    </Reference>
48    <Reference Include="HeuristicLab.Common-3.3">
49      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
50      <Private>False</Private>
51    </Reference>
52    <Reference Include="HeuristicLab.Core-3.3">
53      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
54      <Private>False</Private>
55    </Reference>
56    <Reference Include="HeuristicLab.Data-3.3">
57      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
58      <Private>False</Private>
59    </Reference>
60    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
61      <SpecificVersion>False</SpecificVersion>
62      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
63      <Private>False</Private>
64    </Reference>
65    <Reference Include="HeuristicLab.Optimization-3.3">
66      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
67      <Private>False</Private>
68    </Reference>
69    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
70      <SpecificVersion>False</SpecificVersion>
71      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
72      <Private>False</Private>
73    </Reference>
74    <Reference Include="HeuristicLab.Persistence-3.3">
75      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
76      <Private>False</Private>
77    </Reference>
78    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
79      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
80      <Private>False</Private>
81    </Reference>
82    <Reference Include="System" />
83    <Reference Include="System.Core" />
84    <Reference Include="System.Drawing" />
85  </ItemGroup>
86  <ItemGroup>
87    <Compile Include="MigrationStrategy.cs" />
88    <Compile Include="P2PTask.cs" />
89    <Compile Include="Plugin.cs" />
90    <Compile Include="Properties\AssemblyInfo.cs" />
91    <Compile Include="P2PMigrationAnalyzer.cs" />
92  </ItemGroup>
93  <ItemGroup>
94    <None Include="App.config" />
95    <None Include="HeuristicLab.snk" />
96  </ItemGroup>
97  <ItemGroup>
98    <ProjectReference Include="..\DistributedGA.Core\DistributedGA.Core.csproj">
99      <Project>{02e73f42-bdc9-4a7a-b74f-5879def27320}</Project>
100      <Name>DistributedGA.Core</Name>
101    </ProjectReference>
102  </ItemGroup>
103  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105       Other similar extension points exist, see Microsoft.Common.targets.
106  <Target Name="BeforeBuild">
107  </Target>
108  <Target Name="AfterBuild">
109  </Target>
110  -->
111</Project>
Note: See TracBrowser for help on using the repository browser.