Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2895_PushGP_GenealogyAnalysis/HeuristicLab.Problems.ProgramSynthesis.Base/HeuristicLab.Problems.ProgramSynthesis.Base.csproj @ 15896

Last change on this file since 15896 was 15771, checked in by bburlacu, 6 years ago

#2895: Add solution skeleton for PushGP with genealogy analysis.

File size: 4.6 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>{0A60B6BA-8ACE-478E-98F3-57441B53B5F9}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.ProgramSynthesis.Base</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.ProgramSynthesis.Base</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\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <Prefer32Bit>false</Prefer32Bit>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\..\trunk\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33    <LangVersion>5</LangVersion>
34    <Prefer32Bit>false</Prefer32Bit>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="HeuristicLab.Collections-3.3">
38      <HintPath>..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Common-3.3">
41      <HintPath>..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Core-3.3">
44      <HintPath>..\..\..\trunk\bin\HeuristicLab.Core-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Core.Views-3.3">
47      <HintPath>..\..\..\trunk\bin\HeuristicLab.Core.Views-3.3.dll</HintPath>
48    </Reference>
49    <Reference Include="HeuristicLab.Data-3.3">
50      <HintPath>..\..\..\trunk\bin\HeuristicLab.Data-3.3.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Data.Views-3.3">
53      <HintPath>..\..\..\trunk\bin\HeuristicLab.Data.Views-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.MainForm-3.3">
56      <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm-3.3.dll</HintPath>
57    </Reference>
58    <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3">
59      <HintPath>..\..\..\trunk\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
60    </Reference>
61    <Reference Include="HeuristicLab.Parameters-3.3">
62      <HintPath>..\..\..\trunk\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
63    </Reference>
64    <Reference Include="HeuristicLab.Persistence-3.3">
65      <HintPath>..\..\..\trunk\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
66    </Reference>
67    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
68      <SpecificVersion>False</SpecificVersion>
69      <HintPath>..\..\..\trunk\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
70    </Reference>
71    <Reference Include="HeuristicLab.Random-3.3">
72      <HintPath>..\..\..\trunk\bin\HeuristicLab.Random-3.3.dll</HintPath>
73    </Reference>
74    <Reference Include="System" />
75    <Reference Include="System.Core" />
76    <Reference Include="System.Drawing" />
77    <Reference Include="System.Windows.Forms" />
78    <Reference Include="System.Xml.Linq" />
79    <Reference Include="System.Data.DataSetExtensions" />
80    <Reference Include="Microsoft.CSharp" />
81    <Reference Include="System.Data" />
82    <Reference Include="System.Net.Http" />
83    <Reference Include="System.Xml" />
84  </ItemGroup>
85  <ItemGroup>
86    <Compile Include="Plugin.cs" />
87    <Compile Include="Properties\AssemblyInfo.cs" />
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
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.