Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/HeuristicLab.Algorithms.GeneticProgramming.csproj @ 11857

Last change on this file since 11857 was 11857, checked in by gkronber, 9 years ago

#2283: solution reorg

File size: 5.7 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  <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>{14BEC23F-63FD-4954-B8AE-E2F4962E9B57}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.GeneticProgramming</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.GeneticProgramming</AssemblyName>
12    <TargetFrameworkVersion>v4.5</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\Debug\</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\Release\</OutputPath>
28    <DefineConstants>TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31  </PropertyGroup>
32  <ItemGroup>
33    <Reference Include="HeuristicLab.Algorithms.GeneticAlgorithm-3.3">
34      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.GeneticAlgorithm-3.3.dll</HintPath>
35    </Reference>
36    <Reference Include="HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3">
37      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm-3.3.dll</HintPath>
38    </Reference>
39    <Reference Include="HeuristicLab.Collections-3.3">
40      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
41    </Reference>
42    <Reference Include="HeuristicLab.Common-3.3">
43      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
44    </Reference>
45    <Reference Include="HeuristicLab.Core-3.3">
46      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
47    </Reference>
48    <Reference Include="HeuristicLab.Data-3.3">
49      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
50    </Reference>
51    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4">
52      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
53    </Reference>
54    <Reference Include="HeuristicLab.Operators-3.3">
55      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
56    </Reference>
57    <Reference Include="HeuristicLab.Optimization-3.3">
58      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
59    </Reference>
60    <Reference Include="HeuristicLab.ParallelEngine-3.3">
61      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.ParallelEngine-3.3.dll</HintPath>
62    </Reference>
63    <Reference Include="HeuristicLab.Parameters-3.3">
64      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
65    </Reference>
66    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
67      <SpecificVersion>False</SpecificVersion>
68      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
69    </Reference>
70    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
71      <SpecificVersion>False</SpecificVersion>
72      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
73    </Reference>
74    <Reference Include="HeuristicLab.Selection-3.3">
75      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Selection-3.3.dll</HintPath>
76    </Reference>
77    <Reference Include="System" />
78    <Reference Include="System.Core" />
79    <Reference Include="System.Drawing" />
80  </ItemGroup>
81  <ItemGroup>
82    <Compile Include="GenericSymbExprEvaluator.cs" />
83    <Compile Include="GenericSymbExprGrammar.cs" />
84    <Compile Include="GenericSymbExprProblem.cs" />
85    <Compile Include="IGenericSymbExprEvaluator.cs" />
86    <Compile Include="OffspringSelectionGP.cs" />
87    <Compile Include="Properties\AssemblyInfo.cs" />
88    <Compile Include="StandardGP.cs" />
89  </ItemGroup>
90  <ItemGroup>
91    <ProjectReference Include="..\HeuristicLab.Algorithms.GrammaticalOptimization\HeuristicLab.Algorithms.GrammaticalOptimization.csproj">
92      <Project>{eea07488-1a51-412a-a52c-53b754a628b3}</Project>
93      <Name>HeuristicLab.Algorithms.GrammaticalOptimization</Name>
94    </ProjectReference>
95    <ProjectReference Include="..\HeuristicLab.Problems.GrammaticalOptimization\HeuristicLab.Problems.GrammaticalOptimization.csproj">
96      <Project>{CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}</Project>
97      <Name>HeuristicLab.Problems.GrammaticalOptimization</Name>
98    </ProjectReference>
99  </ItemGroup>
100  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
101  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102       Other similar extension points exist, see Microsoft.Common.targets.
103  <Target Name="BeforeBuild">
104  </Target>
105  <Target Name="AfterBuild">
106  </Target>
107  -->
108</Project>
Note: See TracBrowser for help on using the repository browser.