Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 14328 was 14328, checked in by pkimmesw, 8 years ago

#2665 Set .NET version to 4.5, C# version to 5.0, Added expression templates and factory

File size: 5.0 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  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32    <LangVersion>5</LangVersion>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="HeuristicLab.Common-3.3">
36      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
37    </Reference>
38    <Reference Include="HeuristicLab.Core-3.3">
39      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
40    </Reference>
41    <Reference Include="HeuristicLab.Random-3.3">
42      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
43    </Reference>
44    <Reference Include="System" />
45    <Reference Include="System.Core" />
46    <Reference Include="System.Xml.Linq" />
47    <Reference Include="System.Data.DataSetExtensions" />
48    <Reference Include="Microsoft.CSharp" />
49    <Reference Include="System.Data" />
50    <Reference Include="System.Net.Http" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="Exporter\Exporter.cs" />
55    <Compile Include="Expressions\Boolean\BooleanPushExpression.cs" />
56    <Compile Include="Expressions\Code\CodeDoExpression.cs" />
57    <Compile Include="Expressions\Code\CodeDefineExpression.cs" />
58    <Compile Include="Expressions\Code\CodeIfExpression.cs" />
59    <Compile Include="Expressions\Code\CodeNoopExpression.cs" />
60    <Compile Include="Expressions\Code\CodeQuoteExpression.cs" />
61    <Compile Include="Expressions\Exec\ExecDefineExpression.cs" />
62    <Compile Include="Expressions\Exec\ExecYExpression.cs" />
63    <Compile Include="Expressions\Exec\ExecDoRangeExpression.cs" />
64    <Compile Include="Expressions\Exec\ExecIfExpression.cs" />
65    <Compile Include="Expressions\Exec\ExecPushExpression.cs" />
66    <Compile Include="Expressions\Exec\ExecExpandExpression.cs" />
67    <Compile Include="Expressions\ExpressionFactory.cs" />
68    <Compile Include="Expressions\Expression.cs" />
69    <Compile Include="Expressions\Float\FloatPushExpression.cs" />
70    <Compile Include="Expressions\Integer\IntegerPushExpression.cs" />
71    <Compile Include="Expressions\Name\NameDefineXExecExpression.cs" />
72    <Compile Include="Expressions\Templates\DefineExpressionTemplate.cs" />
73    <Compile Include="Expressions\Templates\DuplicateExpressionTemplate.cs" />
74    <Compile Include="Expressions\Templates\ExpressionTemplate.cs" />
75    <Compile Include="Expressions\Templates\PopExpressionTemplate.cs" />
76    <Compile Include="Expressions\Templates\PushResultExpressionTemplate.cs" />
77    <Compile Include="Interpreter\Configuration.cs" />
78    <Compile Include="Generators\CodeGenerator.cs" />
79    <Compile Include="Generators\Configuration.cs" />
80    <Compile Include="OpCode.cs" />
81    <Compile Include="OpCodeExtensions.cs" />
82    <Compile Include="Parser\Parser.cs" />
83    <Compile Include="Stack\IStack.cs" />
84    <Compile Include="Interpreter\Interpreter.cs" />
85    <Compile Include="Properties\AssemblyInfo.cs" />
86    <Compile Include="Interpreter\IInterpreter.cs" />
87    <Compile Include="Stack\PushGPStack.cs" />
88    <Compile Include="Parser\SymbolTable.cs" />
89    <Compile Include="Symbols.cs" />
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.