Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RAPGA/HeuristicLab.Algorithms.RAPGA/3.3/HeuristicLab.Algorithms.RAPGA-3.3.csproj @ 8385

Last change on this file since 8385 was 8385, checked in by jkarder, 12 years ago

#1247:

  • added operator that evaluates expressions
  • added selection pressure analyzer
  • fixed bug in counting of evaluated solutions
File size: 5.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{B03C4E41-1D01-4C60-B0F4-DBB257D98CA8}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Algorithms.RAPGA</RootNamespace>
12    <AssemblyName>HeuristicLab.Algorithms.RAPGA-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
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    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="HeuristicLab.Analysis-3.3">
42      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Analysis-3.3.dll</HintPath>
43      <Private>False</Private>
44    </Reference>
45    <Reference Include="HeuristicLab.Collections-3.3">
46      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
47      <Private>False</Private>
48    </Reference>
49    <Reference Include="HeuristicLab.Common-3.3">
50      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
51      <Private>False</Private>
52    </Reference>
53    <Reference Include="HeuristicLab.Core-3.3">
54      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
55      <Private>False</Private>
56    </Reference>
57    <Reference Include="HeuristicLab.Data-3.3">
58      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
59      <Private>False</Private>
60    </Reference>
61    <Reference Include="HeuristicLab.Operators-3.3">
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.Optimization.Operators-3.3">
70      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization.Operators-3.3.dll</HintPath>
71      <Private>False</Private>
72    </Reference>
73    <Reference Include="HeuristicLab.Parameters-3.3">
74      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
75      <Private>False</Private>
76    </Reference>
77    <Reference Include="HeuristicLab.Persistence-3.3">
78      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
79      <Private>False</Private>
80    </Reference>
81    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
82      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
83      <Private>False</Private>
84    </Reference>
85    <Reference Include="HeuristicLab.Random-3.3">
86      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
87      <Private>False</Private>
88    </Reference>
89    <Reference Include="HeuristicLab.Selection-3.3">
90      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Selection-3.3.dll</HintPath>
91      <Private>False</Private>
92    </Reference>
93    <Reference Include="System" />
94    <Reference Include="System.Core" />
95    <Reference Include="System.Data" />
96    <Reference Include="System.Xml" />
97  </ItemGroup>
98  <ItemGroup>
99    <Compile Include="Analyzers\SelectionPressureAnalyzer.cs" />
100    <Compile Include="Analyzers\OffspringSuccessAnalyzer.cs" />
101    <Compile Include="Analyzers\PopulationSizeAnalyzer.cs" />
102    <Compile Include="DuplicatesSelector.cs" />
103    <Compile Include="ExpressionEvaluator.cs" />
104    <Compile Include="OffspringRestorer.cs" />
105    <Compile Include="ProgressiveOffspringPreserver.cs" />
106    <Compile Include="RAPGA.cs" />
107    <Compile Include="RAPGAMainLoop.cs" />
108    <None Include="Properties\AssemblyInfo.cs.frame" />
109    <None Include="Plugin.cs.frame" />
110    <Compile Include="Plugin.cs" />
111    <Compile Include="Properties\AssemblyInfo.cs" />
112  </ItemGroup>
113  <ItemGroup>
114    <None Include="HeuristicLab.snk" />
115  </ItemGroup>
116  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
117  <PropertyGroup>
118    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
119set ProjectDir=$(ProjectDir)
120set SolutionDir=$(SolutionDir)
121set Outdir=$(Outdir)
122
123call PreBuildEvent.cmd
124</PreBuildEvent>
125  </PropertyGroup>
126  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
127       Other similar extension points exist, see Microsoft.Common.targets.
128  <Target Name="BeforeBuild">
129  </Target>
130  <Target Name="AfterBuild">
131  </Target>
132  -->
133</Project>
Note: See TracBrowser for help on using the repository browser.