Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GpPluginsRefactoringBranch/HeuristicLab.GP.StructureIdentification/HeuristicLab.GP.StructureIdentification.csproj @ 645

Last change on this file since 645 was 645, checked in by gkronber, 16 years ago

moved all classes of HL.Functions and HL.StructureIdentification to new plugins HeuristicLab.GP... (#177)

File size: 6.7 KB
Line 
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>
6    <ProductVersion>9.0.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{74223A32-C726-4978-BE78-37113A18373C}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.GP.StructureIdentification</RootNamespace>
12    <AssemblyName>HeuristicLab.GP.StructureIdentification</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
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>
35  <ItemGroup>
36    <Reference Include="System" />
37    <Reference Include="System.Core">
38      <RequiredTargetFramework>3.5</RequiredTargetFramework>
39    </Reference>
40    <Reference Include="System.Drawing" />
41    <Reference Include="System.Windows.Forms" />
42    <Reference Include="System.Xml.Linq">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data.DataSetExtensions">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Data" />
49    <Reference Include="System.Xml" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="Addition.cs" />
53    <Compile Include="And.cs" />
54    <Compile Include="Average.cs" />
55    <Compile Include="BakedTreeEvaluator.cs" />
56    <Compile Include="Constant.cs" />
57    <Compile Include="Cosinus.cs" />
58    <Compile Include="Differential.cs" />
59    <Compile Include="Division.cs" />
60    <Compile Include="Equal.cs" />
61    <Compile Include="Evaluators\CoefficientOfDeterminationEvaluator.cs" />
62    <Compile Include="Evaluators\EarlyStoppingMeanSquaredErrorEvaluator.cs" />
63    <Compile Include="Evaluators\MeanAbsolutePercentageErrorEvaluator.cs" />
64    <Compile Include="Evaluators\MeanSquaredErrorEvaluator.cs" />
65    <Compile Include="Evaluators\SimpleEvaluator.cs" />
66    <Compile Include="Evaluators\VarianceAccountedForEvaluator.cs" />
67    <Compile Include="Exponential.cs" />
68    <Compile Include="GPEvaluatorBase.cs" />
69    <Compile Include="GreaterThan.cs" />
70    <Compile Include="HeuristicLabGPStructureIdentificationPlugin.cs" />
71    <Compile Include="IfThenElse.cs" />
72    <Compile Include="LessThan.cs" />
73    <Compile Include="Logarithm.cs" />
74    <Compile Include="ModelAnalyzerExporter.cs" />
75    <Compile Include="Multiplication.cs" />
76    <Compile Include="Not.cs" />
77    <Compile Include="Or.cs" />
78    <Compile Include="Power.cs" />
79    <Compile Include="Properties\AssemblyInfo.cs" />
80    <Compile Include="Signum.cs" />
81    <Compile Include="Sinus.cs" />
82    <Compile Include="Sqrt.cs" />
83    <Compile Include="StructIdProblemInjector.cs" />
84    <Compile Include="StructIdProblemInjectorView.cs">
85      <SubType>UserControl</SubType>
86    </Compile>
87    <Compile Include="StructIdProblemInjectorView.Designer.cs">
88      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
89    </Compile>
90    <Compile Include="Subtraction.cs" />
91    <Compile Include="SymbolicExpressionExporter.cs" />
92    <Compile Include="SymbolTable.cs" />
93    <Compile Include="Tangens.cs" />
94    <Compile Include="Variable.cs" />
95    <Compile Include="Xor.cs" />
96  </ItemGroup>
97  <ItemGroup>
98    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
99      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
100      <Name>HeuristicLab.Constraints</Name>
101    </ProjectReference>
102    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
103      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
104      <Name>HeuristicLab.Core</Name>
105    </ProjectReference>
106    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
107      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
108      <Name>HeuristicLab.DataAnalysis</Name>
109    </ProjectReference>
110    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
111      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
112      <Name>HeuristicLab.Data</Name>
113    </ProjectReference>
114    <ProjectReference Include="..\HeuristicLab.GP\HeuristicLab.GP.csproj">
115      <Project>{1F1CF3ED-374C-4288-995B-93F6B872F571}</Project>
116      <Name>HeuristicLab.GP</Name>
117    </ProjectReference>
118    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
119      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
120      <Name>HeuristicLab.Operators</Name>
121    </ProjectReference>
122    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
123      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
124      <Name>HeuristicLab.PluginInfrastructure</Name>
125    </ProjectReference>
126    <ProjectReference Include="..\HeuristicLab.Random\HeuristicLab.Random.csproj">
127      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
128      <Name>HeuristicLab.Random</Name>
129    </ProjectReference>
130  </ItemGroup>
131  <ItemGroup>
132    <EmbeddedResource Include="StructIdProblemInjectorView.resx">
133      <DependentUpon>StructIdProblemInjectorView.cs</DependentUpon>
134      <SubType>Designer</SubType>
135    </EmbeddedResource>
136  </ItemGroup>
137  <ItemGroup>
138    <None Include="HeuristicLab.snk" />
139  </ItemGroup>
140  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
141  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
142       Other similar extension points exist, see Microsoft.Common.targets.
143  <Target Name="BeforeBuild">
144  </Target>
145  <Target Name="AfterBuild">
146  </Target>
147  -->
148</Project>
Note: See TracBrowser for help on using the repository browser.