Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GP-Refactoring-713/sources/HeuristicLab.GP.StructureIdentification/3.3/HeuristicLab.GP.StructureIdentification-3.3.csproj @ 2215

Last change on this file since 2215 was 2212, checked in by gkronber, 15 years ago

GP Refactoring: #713

  • added project GP.Operators
  • moved operators from plugin GP to plugin GP.Operators
  • deleted unused constraints
  • removed dependency of GP plugins on Constraints plugin
  • moved StructID functions into directory Symbols
  • deleted unused class FunView
  • implemented add and remove functionality for the FunctionLibraryView
File size: 11.7 KB
RevLine 
[644]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
[769]6    <ProductVersion>9.0.30729</ProductVersion>
[644]7    <SchemaVersion>2.0</SchemaVersion>
[645]8    <ProjectGuid>{74223A32-C726-4978-BE78-37113A18373C}</ProjectGuid>
[644]9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.GP.StructureIdentification</RootNamespace>
[1290]12    <AssemblyName>HeuristicLab.GP.StructureIdentification-3.3</AssemblyName>
[644]13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
[645]15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[644]17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
[651]35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
[1474]51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>bin\x64\Debug\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <DebugType>full</DebugType>
56    <PlatformTarget>x64</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
60    <OutputPath>bin\x64\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x64</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
[644]67  <ItemGroup>
68    <Reference Include="System" />
69    <Reference Include="System.Core">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
[645]72    <Reference Include="System.Drawing" />
73    <Reference Include="System.Windows.Forms" />
[644]74    <Reference Include="System.Xml.Linq">
75      <RequiredTargetFramework>3.5</RequiredTargetFramework>
76    </Reference>
77    <Reference Include="System.Data.DataSetExtensions">
78      <RequiredTargetFramework>3.5</RequiredTargetFramework>
79    </Reference>
80    <Reference Include="System.Data" />
81    <Reference Include="System.Xml" />
82  </ItemGroup>
83  <ItemGroup>
[1287]84    <Compile Include="AlgorithmBase.cs" />
[1894]85    <Compile Include="Evaluators\SimpleGPEvaluatorBase.cs" />
[2211]86    <Compile Include="HL3TreeEvaluator.cs" />
[2212]87    <Compile Include="Symbols\Addition.cs" />
88    <Compile Include="Symbols\And.cs" />
89    <Compile Include="Symbols\Average.cs" />
90    <Compile Include="Symbols\Constant.cs" />
91    <Compile Include="Symbols\ConstantFunctionTree.cs" />
92    <Compile Include="Symbols\Cosinus.cs" />
93    <Compile Include="Symbols\Differential.cs" />
94    <Compile Include="Symbols\Division.cs" />
95    <Compile Include="Symbols\Equal.cs" />
96    <Compile Include="Symbols\Exponential.cs" />
97    <Compile Include="Symbols\GreaterThan.cs" />
98    <Compile Include="Symbols\IfThenElse.cs" />
99    <Compile Include="Symbols\LessThan.cs" />
100    <Compile Include="Symbols\Logarithm.cs" />
101    <Compile Include="Symbols\Multiplication.cs" />
102    <Compile Include="Symbols\Not.cs" />
103    <Compile Include="Symbols\Or.cs" />
104    <Compile Include="Symbols\Power.cs" />
105    <Compile Include="Symbols\Signum.cs" />
106    <Compile Include="Symbols\Sinus.cs" />
107    <Compile Include="Symbols\Sqrt.cs" />
108    <Compile Include="Symbols\Subtraction.cs" />
109    <Compile Include="Symbols\SymbolTable.cs" />
110    <Compile Include="Symbols\Tangens.cs" />
111    <Compile Include="Symbols\Variable.cs" />
112    <Compile Include="Symbols\VariableFunctionTree.cs" />
113    <Compile Include="Symbols\Xor.cs" />
[1836]114    <Compile Include="TreeEvaluatorBase.cs" />
[1817]115    <Compile Include="HL2TreeEvaluator.cs" />
[1796]116    <Compile Include="ITreeEvaluator.cs" />
[1287]117    <Compile Include="Evaluators\MeanAbsolutePercentageOfRangeErrorEvaluator.cs" />
118    <Compile Include="FunctionLibraryInjector.cs" />
119    <Compile Include="OffspringSelectionGP.cs" />
120    <Compile Include="OffSpringSelectionGpEditor.cs">
[1572]121      <SubType>UserControl</SubType>
[1287]122    </Compile>
123    <Compile Include="OffSpringSelectionGpEditor.Designer.cs">
124      <DependentUpon>OffSpringSelectionGpEditor.cs</DependentUpon>
125    </Compile>
126    <Compile Include="StandardGpEditor.cs">
[1572]127      <SubType>UserControl</SubType>
[1287]128    </Compile>
129    <Compile Include="StandardGpEditor.Designer.cs">
130      <DependentUpon>StandardGpEditor.cs</DependentUpon>
131    </Compile>
132    <Compile Include="StandardGP.cs" />
[645]133    <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" />
[769]134    <Compile Include="Evaluators\UncertainMeanSquaredErrorEvaluator.cs" />
[645]135    <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
[651]136    <Compile Include="Evaluators\GPEvaluatorBase.cs" />
[645]137    <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" />
138    <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" />
139    <Compile Include="Evaluators\SimpleEvaluator.cs" />
140    <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" />
141    <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" />
142    <Compile Include="ModelAnalyzerExporter.cs" />
[644]143    <Compile Include="Properties\AssemblyInfo.cs" />
[645]144    <Compile Include="SymbolicExpressionExporter.cs" />
[2041]145    <Compile Include="Evaluators\VariableEvaluationImpactCalculator.cs" />
146    <Compile Include="Evaluators\VariableQualityImpactCalculator.cs" />
[644]147  </ItemGroup>
[645]148  <ItemGroup>
[1534]149    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
[645]150      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
[1534]151      <Name>HeuristicLab.Core-3.2</Name>
[645]152    </ProjectReference>
[1534]153    <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj">
[645]154      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
[1534]155      <Name>HeuristicLab.DataAnalysis-3.2</Name>
[645]156    </ProjectReference>
[1534]157    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
[645]158      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
[1534]159      <Name>HeuristicLab.Data-3.2</Name>
[645]160    </ProjectReference>
[1534]161    <ProjectReference Include="..\..\HeuristicLab.Evolutionary\3.2\HeuristicLab.Evolutionary-3.2.csproj">
[1287]162      <Project>{F5614C53-153C-4A37-A608-121E1C087F07}</Project>
[1534]163      <Name>HeuristicLab.Evolutionary-3.2</Name>
[1287]164    </ProjectReference>
[2210]165    <ProjectReference Include="..\..\HeuristicLab.GP.Interfaces\3.3\HeuristicLab.GP.Interfaces-3.3.csproj">
166      <Project>{924B6BEA-9A99-40FE-9334-5C01E8D540EC}</Project>
167      <Name>HeuristicLab.GP.Interfaces-3.3</Name>
168    </ProjectReference>
[2212]169    <ProjectReference Include="..\..\HeuristicLab.GP.Operators\3.3\HeuristicLab.GP.Operators-3.3.csproj">
170      <Project>{45D11FBD-A71B-48D3-8A94-8EB0DFE8E06A}</Project>
171      <Name>HeuristicLab.GP.Operators-3.3</Name>
172    </ProjectReference>
[1534]173    <ProjectReference Include="..\..\HeuristicLab.GP\3.3\HeuristicLab.GP-3.3.csproj">
[645]174      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
[1534]175      <Name>HeuristicLab.GP-3.3</Name>
[645]176    </ProjectReference>
[1534]177    <ProjectReference Include="..\..\HeuristicLab.Logging\3.2\HeuristicLab.Logging-3.2.csproj">
[1287]178      <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project>
[1534]179      <Name>HeuristicLab.Logging-3.2</Name>
[1287]180    </ProjectReference>
[1856]181    <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj">
182      <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project>
183      <Name>HeuristicLab.Modeling-3.2</Name>
184    </ProjectReference>
[1534]185    <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.2\HeuristicLab.Operators.Programmable-3.2.csproj">
[1287]186      <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project>
[1534]187      <Name>HeuristicLab.Operators.Programmable-3.2</Name>
[1287]188    </ProjectReference>
[1534]189    <ProjectReference Include="..\..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
[645]190      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
[1534]191      <Name>HeuristicLab.Operators-3.2</Name>
[645]192    </ProjectReference>
[1534]193    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
[645]194      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
195      <Name>HeuristicLab.PluginInfrastructure</Name>
196    </ProjectReference>
[1534]197    <ProjectReference Include="..\..\HeuristicLab.Random\3.2\HeuristicLab.Random-3.2.csproj">
[645]198      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
[1534]199      <Name>HeuristicLab.Random-3.2</Name>
[645]200    </ProjectReference>
[1534]201    <ProjectReference Include="..\..\HeuristicLab.Selection.OffspringSelection\3.2\HeuristicLab.Selection.OffspringSelection-3.2.csproj">
[1287]202      <Project>{205898D3-2717-4686-AF17-52409B7EC0C6}</Project>
[1534]203      <Name>HeuristicLab.Selection.OffspringSelection-3.2</Name>
[1287]204    </ProjectReference>
[1534]205    <ProjectReference Include="..\..\HeuristicLab.Selection\3.2\HeuristicLab.Selection-3.2.csproj">
[1287]206      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
[1534]207      <Name>HeuristicLab.Selection-3.2</Name>
[1287]208    </ProjectReference>
[1534]209    <ProjectReference Include="..\..\HeuristicLab.SequentialEngine\3.2\HeuristicLab.SequentialEngine-3.2.csproj">
[1287]210      <Project>{B4BE8E53-BA06-4237-9A01-24255F880201}</Project>
[1534]211      <Name>HeuristicLab.SequentialEngine-3.2</Name>
[1287]212    </ProjectReference>
[645]213  </ItemGroup>
214  <ItemGroup>
[1287]215    <EmbeddedResource Include="OffSpringSelectionGpEditor.resx">
216      <DependentUpon>OffSpringSelectionGpEditor.cs</DependentUpon>
217    </EmbeddedResource>
218    <EmbeddedResource Include="StandardGpEditor.resx">
219      <DependentUpon>StandardGpEditor.cs</DependentUpon>
[645]220      <SubType>Designer</SubType>
221    </EmbeddedResource>
222  </ItemGroup>
223  <ItemGroup>
224    <None Include="HeuristicLab.snk" />
[651]225    <None Include="Properties\AssemblyInfo.frame" />
[645]226  </ItemGroup>
[644]227  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
228  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
229       Other similar extension points exist, see Microsoft.Common.targets.
230  <Target Name="BeforeBuild">
231  </Target>
232  <Target Name="AfterBuild">
233  </Target>
234  -->
[651]235  <PropertyGroup>
[852]236    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
237set ProjectDir=$(ProjectDir)
238set SolutionDir=$(SolutionDir)
239set Outdir=$(Outdir)
240
241call PreBuildEvent.cmd</PreBuildEvent>
[651]242  </PropertyGroup>
[644]243</Project>
Note: See TracBrowser for help on using the repository browser.