Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Problems.GrammaticalOptimization.csproj @ 11972

Last change on this file since 11972 was 11972, checked in by gkronber, 9 years ago

#2283 new experiments

File size: 6.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.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>{CB9DCCF6-667E-4A13-B82D-DBD6B45A045E}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.GrammaticalOptimization</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.GrammaticalOptimization</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    <Prefer32Bit>false</Prefer32Bit>
34  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
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, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
47      <SpecificVersion>False</SpecificVersion>
48      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4">
51      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.dll</HintPath>
52    </Reference>
53    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
54      <SpecificVersion>False</SpecificVersion>
55      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Operators-3.3.dll</HintPath>
56    </Reference>
57    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
58      <SpecificVersion>False</SpecificVersion>
59      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
60    </Reference>
61    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
62      <SpecificVersion>False</SpecificVersion>
63      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Parameters-3.3.dll</HintPath>
64    </Reference>
65    <Reference Include="HeuristicLab.Persistence-3.3">
66      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
67    </Reference>
68    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
69      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
70    </Reference>
71    <Reference Include="System" />
72    <Reference Include="System.Core" />
73    <Reference Include="System.Drawing" />
74  </ItemGroup>
75  <ItemGroup>
76    <Compile Include="ExpressionInterpreter.cs" />
77    <Compile Include="Feature.cs" />
78    <Compile Include="Interfaces\IGrammar.cs" />
79    <Compile Include="Interfaces\IProblem.cs" />
80    <Compile Include="Interfaces\ISymbolicExpressionTreeProblem.cs" />
81    <Compile Include="Problems\PermutationProblem.cs" />
82    <Compile Include="Problems\EvenParityProblem.cs" />
83    <Compile Include="Problems\FindPhrasesProblem.cs" />
84    <Compile Include="Problems\HardPalindromeProblem.cs" />
85    <Compile Include="Problems\PalindromeProblem.cs" />
86    <Compile Include="Problems\RoyalPairProblem.cs" />
87    <Compile Include="Problems\RoyalPhraseSequenceProblem.cs" />
88    <Compile Include="Problems\RoyalRoadProblem.cs" />
89    <Compile Include="Problems\RoyalSequenceProblem.cs" />
90    <Compile Include="Problems\RoyalSymbolProblem.cs" />
91    <Compile Include="Problems\RoyalTreeProblem.cs" />
92    <Compile Include="Problems\SantaFeAntProblem.cs" />
93    <Compile Include="Problems\SymbolicRegressionPoly10Problem.cs" />
94    <Compile Include="Grammar.cs" />
95    <Compile Include="ReadonlySequence.cs" />
96    <Compile Include="SentenceSetStatistics.cs" />
97    <Compile Include="Sequence.cs" />
98    <Compile Include="Properties\AssemblyInfo.cs" />
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\HeuristicLab.Common\HeuristicLab.Common.csproj">
102      <Project>{3A2FBBCB-F9DF-4970-87F3-F13337D941AD}</Project>
103      <Name>HeuristicLab.Common</Name>
104    </ProjectReference>
105  </ItemGroup>
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.