Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.GP.Tests/HeuristicLab.GP.Tests.csproj @ 3327

Last change on this file since 3327 was 2675, checked in by gkronber, 14 years ago

Implemented a fix in TreeGardener for #836 (Initial population doesn't contain all functions in combination with SimpleFunctionLibraryInjector). Added test cases for SimpleFunctionLibraryInjector. Changed code for calculation of minTreeHeight and minTreeSize in FunctionBase

File size: 8.2 KB
Line 
1<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{6EDEE199-61FC-48E1-AEDA-AF1C2E722063}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.GP.Tests</RootNamespace>
11    <AssemblyName>HeuristicLab.GP.Tests</AssemblyName>
12    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
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  </PropertyGroup>
33  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
34    <DebugSymbols>true</DebugSymbols>
35    <OutputPath>bin\x86\Debug\</OutputPath>
36    <DefineConstants>DEBUG;TRACE</DefineConstants>
37    <DebugType>full</DebugType>
38    <PlatformTarget>x86</PlatformTarget>
39    <ErrorReport>prompt</ErrorReport>
40  </PropertyGroup>
41  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
42    <OutputPath>bin\x86\Release\</OutputPath>
43    <DefineConstants>TRACE</DefineConstants>
44    <Optimize>true</Optimize>
45    <DebugType>pdbonly</DebugType>
46    <PlatformTarget>x86</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48  </PropertyGroup>
49  <ItemGroup>
50    <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
51    <Reference Include="System" />
52    <Reference Include="System.Core">
53      <RequiredTargetFramework>3.5</RequiredTargetFramework>
54    </Reference>
55    <Reference Include="System.Data" />
56    <Reference Include="System.Data.DataSetExtensions">
57      <RequiredTargetFramework>3.5</RequiredTargetFramework>
58    </Reference>
59    <Reference Include="System.Xml" />
60    <Reference Include="System.Xml.Linq">
61      <RequiredTargetFramework>3.5</RequiredTargetFramework>
62    </Reference>
63  </ItemGroup>
64  <ItemGroup>
65    <Compile Include="SimpleFunctionLibraryTest.cs" />
66    <Compile Include="NetworkFunctionLibraryTest.cs" />
67    <Compile Include="HL3TreeEvaluatorTest.cs" />
68    <Compile Include="NetworkToFunctionTransformerTest.cs" />
69    <Compile Include="ProbabilisticTreeCreatorTest.cs" />
70    <Compile Include="Properties\AssemblyInfo.cs" />
71    <Compile Include="SymbolicExpressionImporter.cs" />
72    <Compile Include="Token.cs" />
73    <Compile Include="Util.cs" />
74  </ItemGroup>
75  <ItemGroup>
76    <ProjectReference Include="..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
77      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
78      <Name>HeuristicLab.Common-3.2</Name>
79    </ProjectReference>
80    <ProjectReference Include="..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
81      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
82      <Name>HeuristicLab.Core-3.2</Name>
83    </ProjectReference>
84    <ProjectReference Include="..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj">
85      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
86      <Name>HeuristicLab.DataAnalysis-3.2</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
89      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
90      <Name>HeuristicLab.Data-3.2</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.GP.Algorithms\3.2\HeuristicLab.GP.Algorithms-3.2.csproj">
93      <Project>{3127719F-110E-4558-8845-98559DBB422D}</Project>
94      <Name>HeuristicLab.GP.Algorithms-3.2</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.GP.Interfaces\3.3\HeuristicLab.GP.Interfaces-3.3.csproj">
97      <Project>{924B6BEA-9A99-40FE-9334-5C01E8D540EC}</Project>
98      <Name>HeuristicLab.GP.Interfaces-3.3</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.GP.Operators\3.3\HeuristicLab.GP.Operators-3.3.csproj">
101      <Project>{45D11FBD-A71B-48D3-8A94-8EB0DFE8E06A}</Project>
102      <Name>HeuristicLab.GP.Operators-3.3</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.GP.StructureIdentification.Classification\3.3\HeuristicLab.GP.StructureIdentification.Classification-3.3.csproj">
105      <Project>{7C20D100-8BEB-433A-9499-F075E2CB9297}</Project>
106      <Name>HeuristicLab.GP.StructureIdentification.Classification-3.3</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.GP.StructureIdentification.ConditionalEvaluation\3.3\HeuristicLab.GP.StructureIdentification.ConditionalEvaluation-3.3.csproj">
109      <Project>{ABAE70E0-14E3-4588-B6BB-15DF022985C3}</Project>
110      <Name>HeuristicLab.GP.StructureIdentification.ConditionalEvaluation-3.3</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.GP.StructureIdentification.Networks\3.2\HeuristicLab.GP.StructureIdentification.Networks-3.2.csproj">
113      <Project>{5DBC2F13-EC32-4DCA-9D5F-E60B5EA8459A}</Project>
114      <Name>HeuristicLab.GP.StructureIdentification.Networks-3.2</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.GP.StructureIdentification.TimeSeries\3.3\HeuristicLab.GP.StructureIdentification.TimeSeries-3.3.csproj">
117      <Project>{6084CFB5-733F-449D-9F92-2E40D13F0514}</Project>
118      <Name>HeuristicLab.GP.StructureIdentification.TimeSeries-3.3</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.GP.StructureIdentification\3.3\HeuristicLab.GP.StructureIdentification-3.3.csproj">
121      <Project>{74223A32-C726-4978-BE78-37113A18373C}</Project>
122      <Name>HeuristicLab.GP.StructureIdentification-3.3</Name>
123    </ProjectReference>
124    <ProjectReference Include="..\HeuristicLab.GP\3.3\HeuristicLab.GP-3.3.csproj">
125      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
126      <Name>HeuristicLab.GP-3.3</Name>
127    </ProjectReference>
128    <ProjectReference Include="..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj">
129      <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project>
130      <Name>HeuristicLab.Modeling-3.2</Name>
131    </ProjectReference>
132    <ProjectReference Include="..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
133      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
134      <Name>HeuristicLab.Operators-3.2</Name>
135    </ProjectReference>
136    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
137      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
138      <Name>HeuristicLab.PluginInfrastructure</Name>
139    </ProjectReference>
140    <ProjectReference Include="..\HeuristicLab.Random\3.2\HeuristicLab.Random-3.2.csproj">
141      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
142      <Name>HeuristicLab.Random-3.2</Name>
143    </ProjectReference>
144  </ItemGroup>
145  <ItemGroup>
146    <Shadow Include="Test References\HeuristicLab.GP.StructureIdentification.Networks-3.2.accessor" />
147  </ItemGroup>
148  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
149  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
150       Other similar extension points exist, see Microsoft.Common.targets.
151  <Target Name="BeforeBuild">
152  </Target>
153  <Target Name="AfterBuild">
154  </Target>
155  -->
156</Project>
Note: See TracBrowser for help on using the repository browser.