Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.Algorithms.PushGP/HeuristicLab.Problems.ProgramSynthesis/HeuristicLab.Problems.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.2 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>{5C93448C-47E3-4C3F-B1D0-EE62A48C3204}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.PushGP</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.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>..\..\..\..\trunk\sources\bin\</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  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
36      <SpecificVersion>False</SpecificVersion>
37      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
38    </Reference>
39    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
40      <SpecificVersion>False</SpecificVersion>
41      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Encodings.IntegerVectorEncoding-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
44      <SpecificVersion>False</SpecificVersion>
45      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.dll</HintPath>
46    </Reference>
47    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
48      <SpecificVersion>False</SpecificVersion>
49      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
50    </Reference>
51    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
52      <SpecificVersion>False</SpecificVersion>
53      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
56      <SpecificVersion>False</SpecificVersion>
57      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
58    </Reference>
59    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
60      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
61    </Reference>
62    <Reference Include="System" />
63    <Reference Include="System.Core" />
64    <Reference Include="System.Drawing" />
65    <Reference Include="System.Xml.Linq" />
66    <Reference Include="System.Data.DataSetExtensions" />
67    <Reference Include="Microsoft.CSharp" />
68    <Reference Include="System.Data" />
69    <Reference Include="System.Net.Http" />
70    <Reference Include="System.Xml" />
71  </ItemGroup>
72  <ItemGroup>
73    <Compile Include="Plugin.cs" />
74    <Compile Include="ProgramSynthesis\PushProblem.cs" />
75    <Compile Include="ProgramSynthesis\PushEvalutator.cs" />
76    <Compile Include="ProgramSynthesis\PushProgram.cs" />
77    <Compile Include="Properties\AssemblyInfo.cs" />
78  </ItemGroup>
79  <ItemGroup>
80    <ProjectReference Include="..\HeuristicLab.Algorithms.PushGP\HeuristicLab.Algorithms.PushGP.csproj">
81      <Project>{368d1303-470c-4f31-91f2-0fad379daa45}</Project>
82      <Name>HeuristicLab.Algorithms.PushGP</Name>
83    </ProjectReference>
84  </ItemGroup>
85  <ItemGroup />
86  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
87  <PropertyGroup>
88    <PostBuildEvent>"T:\BTSync\projects\svn\hl\trunk\sources\bin\HeuristicLab 3.3.exe"</PostBuildEvent>
89  </PropertyGroup>
90  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
91       Other similar extension points exist, see Microsoft.Common.targets.
92  <Target Name="BeforeBuild">
93  </Target>
94  <Target Name="AfterBuild">
95  </Target>
96  -->
97</Project>
Note: See TracBrowser for help on using the repository browser.