Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Evolutionary/HeuristicLab.Evolutionary.csproj @ 1159

Last change on this file since 1159 was 1159, checked in by abeham, 15 years ago

implemented changes to crossover described in ticket #470

  • added ChildrenInitializer operator
  • modified CrossoverBase and MultiCrossoverBase
  • removed unnecessary operators in HeuristicLab.RealVector
File size: 4.8 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{F5614C53-153C-4A37-A608-121E1C087F07}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Evolutionary</RootNamespace>
11    <AssemblyName>HeuristicLab.Evolutionary-3.2</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28  </PropertyGroup>
29  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>bin\Release\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
37    <DocumentationFile>bin\Release\HeuristicLab.Evolutionary-3.2.XML</DocumentationFile>
38  </PropertyGroup>
39  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x86\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x86</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
48    <OutputPath>bin\x86\Release\</OutputPath>
49    <DefineConstants>TRACE</DefineConstants>
50    <DocumentationFile>bin\Release\HeuristicLab.Evolutionary-3.2.XML</DocumentationFile>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x86</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55  </PropertyGroup>
56  <ItemGroup>
57    <Reference Include="System" />
58    <Reference Include="System.Data" />
59    <Reference Include="System.Xml" />
60  </ItemGroup>
61  <ItemGroup>
62    <Compile Include="ChildrenInitializer.cs" />
63    <Compile Include="MultiCrossoverBase.cs" />
64    <Compile Include="SASEGASAReunificator.cs" />
65    <Compile Include="CrossoverBase.cs" />
66    <Compile Include="HeuristicLabEvolutionaryPlugin.cs" />
67    <Compile Include="Properties\AssemblyInfo.cs" />
68    <Compile Include="SubScopesStorer.cs" />
69    <Compile Include="SuccessRuleMutationStrengthAdjuster.cs" />
70    <Compile Include="UnidirectionalRingMigrator.cs" />
71  </ItemGroup>
72  <ItemGroup>
73    <None Include="HeuristicLab.snk" />
74    <None Include="Properties\AssemblyInfo.frame" />
75  </ItemGroup>
76  <ItemGroup>
77    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
78      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
79      <Name>HeuristicLab.Core</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
82      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
83      <Name>HeuristicLab.Data</Name>
84    </ProjectReference>
85    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
86      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
87      <Name>HeuristicLab.Operators</Name>
88    </ProjectReference>
89    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
90      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
91      <Name>HeuristicLab.PluginInfrastructure</Name>
92    </ProjectReference>
93  </ItemGroup>
94  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
95  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
96       Other similar extension points exist, see Microsoft.Common.targets.
97  <Target Name="BeforeBuild">
98  </Target>
99  <Target Name="AfterBuild">
100  </Target>
101  -->
102  <PropertyGroup>
103    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
104set ProjectDir=$(ProjectDir)
105set SolutionDir=$(SolutionDir)
106set Outdir=$(Outdir)
107
108call PreBuildEvent.cmd</PreBuildEvent>
109  </PropertyGroup>
110</Project>
Note: See TracBrowser for help on using the repository browser.