Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/HeuristicLab.Problems.DataAnalysis.Regression-3.3.csproj @ 4056

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

Added new plugins for multi-variate regression. #1089

File size: 12.2 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.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{BDF86B1D-630E-4CE2-8A49-8C90B1BDE4C9}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.DataAnalysis.Regression</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.DataAnalysis.Regression-3.3</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  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x64\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x64</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
44    <OutputPath>bin\x64\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x64</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>bin\x86\Debug\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <DebugType>full</DebugType>
56    <PlatformTarget>x86</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
60    <OutputPath>bin\x86\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x86</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <ItemGroup>
68    <Reference Include="System" />
69    <Reference Include="System.Core">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
72    <Reference Include="System.Drawing" />
73    <Reference Include="System.Xml.Linq">
74      <RequiredTargetFramework>3.5</RequiredTargetFramework>
75    </Reference>
76    <Reference Include="System.Data.DataSetExtensions">
77      <RequiredTargetFramework>3.5</RequiredTargetFramework>
78    </Reference>
79    <Reference Include="System.Data" />
80    <Reference Include="System.Xml" />
81  </ItemGroup>
82  <ItemGroup>
83    <None Include="HeuristicLab.snk" />
84    <None Include="HeuristicLabProblemsDataAnalysisRegressionPlugin.cs.frame" />
85    <None Include="Properties\AssemblyInfo.frame" />
86    <Compile Include="Analyzers\RegressionSolutionAnalyzer.cs">
87      <SubType>Code</SubType>
88    </Compile>
89    <Compile Include="HeuristicLabProblemsDataAnalysisRegressionPlugin.cs" />
90    <Compile Include="LinearRegression\LinearRegressionSolutionCreator.cs" />
91    <Compile Include="LinearRegression\LinearRegressionUtil.cs" />
92    <Compile Include="RandomEnumerable.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94    <Compile Include="SupportVectorRegression\BestSupportVectorRegressionSolutionAnalyzer.cs" />
95    <Compile Include="SupportVectorRegression\SupportVectorRegressionSolution.cs" />
96    <Compile Include="Symbolic\Analyzers\BestSymbolicRegressionSolutionAnalyzer.cs" />
97    <Compile Include="Symbolic\Analyzers\FixedValidationBestScaledSymbolicRegressionSolutionAnalyzer.cs" />
98    <Compile Include="Symbolic\Analyzers\ISymbolicRegressionAnalyzer.cs" />
99    <Compile Include="Symbolic\Analyzers\SymbolicRegressionModelQualityAnalyzer.cs" />
100    <Compile Include="Symbolic\Analyzers\SymbolicRegressionModelQualityCalculator.cs">
101      <SubType>Code</SubType>
102    </Compile>
103    <Compile Include="Symbolic\Analyzers\SymbolicRegressionSolutionLinearScaler.cs" />
104    <Compile Include="Symbolic\Analyzers\SymbolicRegressionTournamentPruning.cs" />
105    <Compile Include="Symbolic\Analyzers\SymbolicRegressionVariableFrequencyAnalyzer.cs" />
106    <Compile Include="Symbolic\Analyzers\ValidationBestScaledSymbolicRegressionSolutionAnalyzer.cs" />
107    <Compile Include="Symbolic\SymbolicRegressionScaledMeanAndVarianceSquaredErrorEvaluator.cs" />
108    <Compile Include="Symbolic\SimpleSymbolicRegressionEvaluator.cs" />
109    <Compile Include="Symbolic\SymbolicRegressionScaledMeanSquaredErrorEvaluator.cs" />
110    <Compile Include="Symbolic\SymbolicRegressionSolution.cs" />
111    <Compile Include="Symbolic\SymbolicRegressionModel.cs" />
112    <Compile Include="Symbolic\ISymbolicRegressionEvaluator.cs">
113      <SubType>Code</SubType>
114    </Compile>
115    <Compile Include="Symbolic\SymbolicRegressionEvaluator.cs">
116      <SubType>Code</SubType>
117    </Compile>
118    <Compile Include="Symbolic\SymbolicRegressionMeanSquaredErrorEvaluator.cs">
119      <SubType>Code</SubType>
120    </Compile>
121    <Compile Include="Symbolic\SymbolicRegressionProblem.cs">
122      <SubType>Code</SubType>
123    </Compile>
124  </ItemGroup>
125  <ItemGroup>
126    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
127      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
128      <Name>HeuristicLab.Analysis-3.3</Name>
129    </ProjectReference>
130    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
131      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
132      <Name>HeuristicLab.Collections-3.3</Name>
133    </ProjectReference>
134    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
135      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
136      <Name>HeuristicLab.Common.Resources-3.3</Name>
137    </ProjectReference>
138    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
139      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
140      <Name>HeuristicLab.Common-3.3</Name>
141    </ProjectReference>
142    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
143      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
144      <Name>HeuristicLab.Core-3.3</Name>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
147      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
148      <Name>HeuristicLab.Data-3.3</Name>
149    </ProjectReference>
150    <ProjectReference Include="..\..\HeuristicLab.Encodings.RealVectorEncoding\3.3\HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj">
151      <Project>{BB6D334A-4BB6-4674-9883-31A6EBB32CAB}</Project>
152      <Name>HeuristicLab.Encodings.RealVectorEncoding-3.3</Name>
153    </ProjectReference>
154    <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.3\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3.csproj">
155      <Project>{125D3006-67F5-48CB-913E-73C0548F17FA}</Project>
156      <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3</Name>
157    </ProjectReference>
158    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\2.5.0\ALGLIB-2.5.0\ALGLIB-2.5.0.csproj">
159      <Project>{29E4B033-1FEF-4FE1-AE17-0A9319D7C54E}</Project>
160      <Name>ALGLIB-2.5.0</Name>
161    </ProjectReference>
162    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\2.5.0\HeuristicLab.ALGLIB-2.5.0\HeuristicLab.ALGLIB-2.5.0.csproj">
163      <Project>{01BBCB5A-144A-4A7E-908E-079849E2F7CF}</Project>
164      <Name>HeuristicLab.ALGLIB-2.5.0</Name>
165    </ProjectReference>
166    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.LibSVM\1.6.3\HeuristicLab.LibSVM-1.6.3\HeuristicLab.LibSVM-1.6.3.csproj">
167      <Project>{89B50302-9CEE-4D13-9779-633EADCAE624}</Project>
168      <Name>HeuristicLab.LibSVM-1.6.3 %28HeuristicLab.ExtLibs\HeuristicLab.LibSVM\HeuristicLab.LibSVM-1.6.3\HeuristicLab.LibSVM-1.6.3%29</Name>
169    </ProjectReference>
170    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.LibSVM\1.6.3\LibSVM-1.6.3\LibSVM-1.6.3.csproj">
171      <Project>{A16F23B5-FB62-499E-A831-26953AA56FE2}</Project>
172      <Name>LibSVM-1.6.3</Name>
173    </ProjectReference>
174    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
175      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
176      <Name>HeuristicLab.Operators-3.3</Name>
177    </ProjectReference>
178    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
179      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
180      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
181    </ProjectReference>
182    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
183      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
184      <Name>HeuristicLab.Optimization-3.3</Name>
185    </ProjectReference>
186    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
187      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
188      <Name>HeuristicLab.Parameters-3.3</Name>
189    </ProjectReference>
190    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
191      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
192      <Name>HeuristicLab.Persistence-3.3</Name>
193    </ProjectReference>
194    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
195      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
196      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
197    </ProjectReference>
198    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.3\HeuristicLab.Problems.DataAnalysis-3.3.csproj">
199      <Project>{70DFD984-B1D9-46FE-8EB7-4DE92D71A9FC}</Project>
200      <Name>HeuristicLab.Problems.DataAnalysis-3.3</Name>
201    </ProjectReference>
202    <ProjectReference Include="..\..\HeuristicLab.Problems.TestFunctions\3.3\HeuristicLab.Problems.TestFunctions-3.3.csproj">
203      <Project>{88B9B0E3-344E-4196-82A3-0F9732506FE8}</Project>
204      <Name>HeuristicLab.Problems.TestFunctions-3.3</Name>
205    </ProjectReference>
206    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
207      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
208      <Name>HeuristicLab.Random-3.3</Name>
209    </ProjectReference>
210  </ItemGroup>
211  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
212  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
213       Other similar extension points exist, see Microsoft.Common.targets.
214  <Target Name="BeforeBuild">
215  </Target>
216  <Target Name="AfterBuild">
217  </Target>
218  -->
219  <PropertyGroup>
220    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
221set ProjectDir=$(ProjectDir)
222set SolutionDir=$(SolutionDir)
223set Outdir=$(Outdir)
224
225call PreBuildEvent.cmd
226SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\HeuristicLabProblemsDataAnalysisRegressionPlugin.cs.frame" "%25ProjectDir%25\HeuristicLabProblemsDataAnalysisRegressionPlugin.cs"</PreBuildEvent>
227  </PropertyGroup>
228</Project>
Note: See TracBrowser for help on using the repository browser.