Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis.Base/HeuristicLab.Problems.ProgramSynthesis.Base.csproj @ 14909

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

#2665 Made ErcOptions checkable

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>{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>bin\Debug\</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>bin\Release\</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\sources\bin\HeuristicLab.Collections-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Common-3.3">
41      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Core-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Data-3.3">
47      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
48    </Reference>
49    <Reference Include="HeuristicLab.Parameters-3.3">
50      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Persistence-3.3">
53      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
56      <SpecificVersion>False</SpecificVersion>
57      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
58    </Reference>
59    <Reference Include="HeuristicLab.Random-3.3">
60      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Random-3.3.dll</HintPath>
61    </Reference>
62    <Reference Include="System" />
63    <Reference Include="System.Core" />
64    <Reference Include="System.Xml.Linq" />
65    <Reference Include="System.Data.DataSetExtensions" />
66    <Reference Include="Microsoft.CSharp" />
67    <Reference Include="System.Data" />
68    <Reference Include="System.Net.Http" />
69    <Reference Include="System.Xml" />
70  </ItemGroup>
71  <ItemGroup>
72    <Compile Include="Erc\Boolean\BooleanErcOptions.cs" />
73    <Compile Include="Erc\Boolean\BooleanRandomErcValue.cs" />
74    <Compile Include="Erc\Char\CharErcOptions.cs" />
75    <Compile Include="Erc\ConstantsErcValue.cs" />
76    <Compile Include="Erc\ErcOption.cs" />
77    <Compile Include="Erc\ErcOptionConvertible.cs" />
78    <Compile Include="Erc\IErcItem.cs" />
79    <Compile Include="Erc\IReadOnlyErcOptions.cs" />
80    <Compile Include="Erc\WeightedErcValueItem.cs" />
81    <Compile Include="Erc\FloatVector\FloatVectorConstantsErcValue.cs" />
82    <Compile Include="Erc\FloatVector\FloatVectorErcOptions.cs" />
83    <Compile Include="Erc\Float\FloatConstantErcValue.cs" />
84    <Compile Include="Erc\Float\FloatRangeErcValue.cs" />
85    <Compile Include="Erc\IntegerVector\IntegerVectorConstantsErcValue.cs" />
86    <Compile Include="Erc\IntegerVector\IntegerVectorErcOptions.cs" />
87    <Compile Include="Erc\IWeightedErcValueItem.cs" />
88    <Compile Include="Erc\StringVector\StringVectorConstantsErcValue.cs" />
89    <Compile Include="Erc\StringVector\StringVectorErcOptions.cs" />
90    <Compile Include="Erc\VectorConstantsErcValue.cs" />
91    <Compile Include="Erc\String\StringConstantErcValue.cs" />
92    <Compile Include="Erc\Integer\IntegerConstantErcValue.cs" />
93    <Compile Include="Erc\ErcOptions.cs" />
94    <Compile Include="Erc\Float\FloatErcOptions.cs" />
95    <Compile Include="Erc\IErcValueItem.cs" />
96    <Compile Include="Erc\Integer\IntegerErcOptions.cs" />
97    <Compile Include="Erc\Integer\IntegerRangeErcValue.cs" />
98    <Compile Include="Erc\String\StringRandomErcValue.cs" />
99    <Compile Include="Erc\String\StringErcOptions.cs" />
100    <Compile Include="Generators\StringGenerator.cs" />
101    <Compile Include="Weighted\IWeighted.cs" />
102    <Compile Include="Plugin.cs" />
103    <Compile Include="Properties\AssemblyInfo.cs" />
104    <Compile Include="Weighted\WeightedExtensions.cs" />
105  </ItemGroup>
106  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
107  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108       Other similar extension points exist, see Microsoft.Common.targets.
109  <Target Name="BeforeBuild">
110  </Target>
111  <Target Name="AfterBuild">
112  </Target>
113  -->
114</Project>
Note: See TracBrowser for help on using the repository browser.