Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Algorithms.PushGP.csproj @ 14513

Last change on this file since 14513 was 14513, checked in by pkimmesw, 7 years ago

#2665 Added Problem.ProgramSynthesis Project, Fixed Expression Issues, Fixed Code Generation

File size: 5.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.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>{368D1303-470C-4F31-91F2-0FAD379DAA45}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.PushGP</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.PushGP</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <LangVersion>5</LangVersion>
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    <LangVersion>5</LangVersion>
34  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="HeuristicLab.Common-3.3">
37      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
38    </Reference>
39    <Reference Include="HeuristicLab.Core-3.3">
40      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
41    </Reference>
42    <Reference Include="HeuristicLab.Random-3.3">
43      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
44    </Reference>
45    <Reference Include="System" />
46    <Reference Include="System.Core" />
47    <Reference Include="System.Xml.Linq" />
48    <Reference Include="System.Data.DataSetExtensions" />
49    <Reference Include="Microsoft.CSharp" />
50    <Reference Include="System.Data" />
51    <Reference Include="System.Net.Http" />
52    <Reference Include="System.Xml" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="Data\Pool\IRecyclable.cs" />
56    <Compile Include="Data\Pool\ObjectPool.cs" />
57    <Compile Include="Data\Random\RandomFactory.cs" />
58    <Compile Include="Data\Tree\ExpressionNode.cs" />
59    <Compile Include="Data\Tree\ExpressionTree.cs" />
60    <Compile Include="Exporter\Exporter.cs" />
61    <Compile Include="Expressions\BooleanExpressions.cs" />
62    <Compile Include="Expressions\CodeExpressions.cs" />
63    <Compile Include="Expressions\DoCountExpressions.cs" />
64    <Compile Include="Expressions\DoTimesExpressions.cs" />
65    <Compile Include="Expressions\ERCExpressions.cs" />
66    <Compile Include="Expressions\DoRangeExpressions.cs" />
67    <Compile Include="Expressions\LoopExpression.cs" />
68    <Compile Include="Expressions\PushResultExpression.cs" />
69    <Compile Include="Expressions\EqualsExpressions.cs" />
70    <Compile Include="Expressions\RandExpressions.cs" />
71    <Compile Include="Expressions\StatefullExpression.cs" />
72    <Compile Include="Expressions\StatelessExpression.cs" />
73    <Compile Include="Expressions\YankDuplicateExpressions.cs" />
74    <Compile Include="Expressions\YankExpressions.cs" />
75    <Compile Include="Expressions\StackdepthExpressions.cs" />
76    <Compile Include="Expressions\ShoveExpressions.cs" />
77    <Compile Include="Expressions\RotateExpressions.cs" />
78    <Compile Include="Expressions\SwapExpressions.cs" />
79    <Compile Include="Expressions\FlushExpressions.cs" />
80    <Compile Include="Expressions\FloatExpressions.cs" />
81    <Compile Include="Expressions\IntegerExpressions.cs" />
82    <Compile Include="Expressions\DefineExpressions.cs" />
83    <Compile Include="Expressions\DuplicateExpressions.cs" />
84    <Compile Include="Expressions\PopExpressions.cs" />
85    <Compile Include="Expressions\PushExpressions.cs" />
86    <Compile Include="Expressions\ExecExpressions.cs" />
87    <Compile Include="Expressions\Expression.cs" />
88    <Compile Include="Expressions\NameExpressions.cs" />
89    <Compile Include="Interpreter\PooledPushGpInterpreter.cs" />
90    <Compile Include="Interpreter\PushGpInterpreterPool.cs" />
91    <Compile Include="Simplifier\ISimplifier.cs" />
92    <Compile Include="Simplifier\RandomSimplifier.cs" />
93    <Compile Include="Generators\BooleanGenerator.cs" />
94    <Compile Include="Generators\FloatGenerator.cs" />
95    <Compile Include="Generators\IntegerGenerator.cs" />
96    <Compile Include="Generators\NameGenerator.cs" />
97    <Compile Include="Interpreter\Configuration.cs" />
98    <Compile Include="Generators\CodeGenerator.cs" />
99    <Compile Include="Parser\PushGPParser.cs" />
100    <Compile Include="Stack\IStack.cs" />
101    <Compile Include="Interpreter\PushGPInterpreter.cs" />
102    <Compile Include="Properties\AssemblyInfo.cs" />
103    <Compile Include="Interpreter\IPushGpInterpreter.cs" />
104    <Compile Include="Stack\PushGPStack.cs" />
105    <Compile Include="Expressions\ExpressionTable.cs" />
106  </ItemGroup>
107  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
108  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109       Other similar extension points exist, see Microsoft.Common.targets.
110  <Target Name="BeforeBuild">
111  </Target>
112  <Target Name="AfterBuild">
113  </Target>
114  -->
115</Project>
Note: See TracBrowser for help on using the repository browser.