Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/HeuristicLab.Algorithms.ALPS-3.3.csproj @ 11590

Last change on this file since 11590 was 11590, checked in by pfleck, 9 years ago

#2269

  • Finished implementing LayerUpdator.
  • Proper implemented per-layer results.
  • Some bugfixes and wiring.
  • Added LastSubScopeCloner. Note that the First/LastSubScopeCloner/Processor might be dropped and Left/Right-Selectors are used instead. Thanks to jkarder for this suggestion.
File size: 9.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>{59F354CB-FE13-4253-AED2-AD86372BEC27}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.ALPS</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.ALPS-3.3</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>..\..\bin\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <DebugType>pdbonly</DebugType>
26    <Optimize>true</Optimize>
27    <OutputPath>..\..\bin\</OutputPath>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
33    <DebugSymbols>true</DebugSymbols>
34    <OutputPath>..\..\bin\</OutputPath>
35    <DefineConstants>DEBUG;TRACE</DefineConstants>
36    <DebugType>full</DebugType>
37    <PlatformTarget>x64</PlatformTarget>
38    <ErrorReport>prompt</ErrorReport>
39    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
40  </PropertyGroup>
41  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
42    <OutputPath>..\..\bin\</OutputPath>
43    <DefineConstants>TRACE</DefineConstants>
44    <Optimize>true</Optimize>
45    <DebugType>pdbonly</DebugType>
46    <PlatformTarget>x64</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
49  </PropertyGroup>
50  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
51    <DebugSymbols>true</DebugSymbols>
52    <OutputPath>..\..\bin\</OutputPath>
53    <DefineConstants>DEBUG;TRACE</DefineConstants>
54    <DebugType>full</DebugType>
55    <PlatformTarget>x86</PlatformTarget>
56    <ErrorReport>prompt</ErrorReport>
57    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
58  </PropertyGroup>
59  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
60    <OutputPath>..\..\bin\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x86</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
67  </PropertyGroup>
68  <PropertyGroup>
69    <SignAssembly>true</SignAssembly>
70  </PropertyGroup>
71  <PropertyGroup>
72    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
73  </PropertyGroup>
74  <ItemGroup>
75    <Reference Include="System" />
76    <Reference Include="System.Core" />
77    <Reference Include="System.Drawing" />
78  </ItemGroup>
79  <ItemGroup>
80    <Compile Include="AgingScheme.cs" />
81    <Compile Include="AlpsGeneticAlgorithm.cs" />
82    <Compile Include="AlpsGeneticAlgorithmMainLoop.cs" />
83    <Compile Include="EldersEmigrator.cs" />
84    <Compile Include="EldersSelector.cs" />
85    <Compile Include="LastSubScopeCloner.cs" />
86    <Compile Include="LayerUpdator.cs" />
87    <Compile Include="MatingPoolCreator.cs" />
88    <Compile Include="OpenNewLayerCalculator.cs" />
89    <Compile Include="MergingReducerCalculator.cs" />
90    <Compile Include="Plugin.cs" />
91    <Compile Include="Properties\AssemblyInfo.cs" />
92    <Compile Include="ShiftToRightMigrator.cs" />
93  </ItemGroup>
94  <ItemGroup>
95    <None Include="HeuristicLab.snk" />
96    <None Include="Plugin.cs.frame" />
97    <None Include="Properties\AssemblyInfo.cs.frame" />
98  </ItemGroup>
99  <ItemGroup>
100    <ProjectReference Include="..\..\HeuristicLab.Algorithms.GeneticAlgorithm\3.3\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.csproj">
101      <Project>{a51da44f-cb35-4f6f-99f5-2a2e904ab93b}</Project>
102      <Name>HeuristicLab.Algorithms.GeneticAlgorithm-3.3</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
105      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
106      <Name>HeuristicLab.Analysis-3.3</Name>
107      <Private>False</Private>
108    </ProjectReference>
109    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
110      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
111      <Name>HeuristicLab.Collections-3.3</Name>
112      <Private>False</Private>
113    </ProjectReference>
114    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
115      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
116      <Name>HeuristicLab.Common.Resources-3.3</Name>
117    </ProjectReference>
118    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
119      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
120      <Name>HeuristicLab.Common-3.3</Name>
121      <Private>False</Private>
122    </ProjectReference>
123    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
124      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
125      <Name>HeuristicLab.Core-3.3</Name>
126    </ProjectReference>
127    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
128      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
129      <Name>HeuristicLab.Data-3.3</Name>
130      <Private>False</Private>
131    </ProjectReference>
132    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
133      <Project>{23da7ff4-d5b8-41b6-aa96-f0561d24f3ee}</Project>
134      <Name>HeuristicLab.Operators-3.3</Name>
135      <Private>False</Private>
136    </ProjectReference>
137    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
138      <Project>{25087811-f74c-4128-bc86-8324271da13e}</Project>
139      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
140      <Private>False</Private>
141    </ProjectReference>
142    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
143      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
144      <Name>HeuristicLab.Optimization-3.3</Name>
145      <Private>False</Private>
146    </ProjectReference>
147    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
148      <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>
149      <Name>HeuristicLab.Parameters-3.3</Name>
150      <Private>False</Private>
151    </ProjectReference>
152    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
153      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
154      <Name>HeuristicLab.Persistence-3.3</Name>
155      <Private>False</Private>
156    </ProjectReference>
157    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
158      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
159      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
160      <Private>False</Private>
161    </ProjectReference>
162    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
163      <Project>{f4539fb6-4708-40c9-be64-0a1390aea197}</Project>
164      <Name>HeuristicLab.Random-3.3</Name>
165      <Private>False</Private>
166    </ProjectReference>
167    <ProjectReference Include="..\..\HeuristicLab.Selection\3.3\HeuristicLab.Selection-3.3.csproj">
168      <Project>{2c36cd4f-e5f5-43a4-801a-201ea895fe17}</Project>
169      <Name>HeuristicLab.Selection-3.3</Name>
170      <Private>False</Private>
171    </ProjectReference>
172  </ItemGroup>
173  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
174  <PropertyGroup>
175    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
176set ProjectDir=$(ProjectDir)
177set SolutionDir=$(SolutionDir)
178set Outdir=$(Outdir)
179
180call PreBuildEvent.cmd</PreBuildEvent>
181  </PropertyGroup>
182  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
183       Other similar extension points exist, see Microsoft.Common.targets.
184  <Target Name="BeforeBuild">
185  </Target>
186  <Target Name="AfterBuild">
187  </Target>
188  -->
189</Project>
Note: See TracBrowser for help on using the repository browser.