Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Algorithms.DataAnalysis.DecisionTrees/3.4/HeuristicLab.Algorithms.DataAnalysis.DecisionTrees-3.4.csproj @ 17080

Last change on this file since 17080 was 17080, checked in by gkronber, 5 years ago

#2847: more changes for renaming the M5 plugin

File size: 10.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.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>{541A53F3-E6A7-402F-91BB-D76041CDD9FD}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Algorithms.DataAnalysis.M5</RootNamespace>
11    <AssemblyName>HeuristicLab.Algorithms.DataAnalysis.M5-3.4</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <PlatformTarget>AnyCPU</PlatformTarget>
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>..\..\bin\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <PlatformTarget>AnyCPU</PlatformTarget>
30    <DebugType>pdbonly</DebugType>
31    <Optimize>true</Optimize>
32    <OutputPath>..\..\bin\</OutputPath>
33    <DefineConstants>TRACE</DefineConstants>
34    <ErrorReport>prompt</ErrorReport>
35    <WarningLevel>4</WarningLevel>
36  </PropertyGroup>
37  <PropertyGroup>
38    <SignAssembly>true</SignAssembly>
39  </PropertyGroup>
40  <PropertyGroup>
41    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
42  </PropertyGroup>
43  <PropertyGroup>
44    <StartupObject />
45  </PropertyGroup>
46  <ItemGroup>
47    <Reference Include="ALGLIB-3.7.0, Version=3.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
48      <SpecificVersion>False</SpecificVersion>
49      <HintPath>..\..\bin\ALGLIB-3.7.0.dll</HintPath>
50      <Private>False</Private>
51    </Reference>
52    <Reference Include="System" />
53    <Reference Include="System.Core" />
54    <Reference Include="System.Data.Linq" />
55    <Reference Include="System.Drawing" />
56    <Reference Include="System.Xml.Linq" />
57    <Reference Include="System.Data.DataSetExtensions" />
58    <Reference Include="Microsoft.CSharp" />
59    <Reference Include="System.Data" />
60    <Reference Include="System.Net.Http" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <None Include="HeuristicLab.snk" />
65    <None Include="Plugin.cs.frame" />
66    <None Include="Properties\AssemblyInfo.cs.frame" />
67  </ItemGroup>
68  <ItemGroup>
69    <Compile Include="DecisionTreeRegression.cs" />
70    <Compile Include="Interfaces\IDecisionTreeModel.cs" />
71    <Compile Include="Interfaces\ILeafModel.cs" />
72    <Compile Include="Interfaces\IPruning.cs" />
73    <Compile Include="Interfaces\ISplitter.cs" />
74    <Compile Include="LeafModels\ComponentReducedLinearModel.cs" />
75    <Compile Include="LeafModels\DampenedModel.cs" />
76    <Compile Include="LeafModels\PreconstructedLinearModel.cs" />
77    <Compile Include="LeafTypes\ComplexLeaf.cs" />
78    <Compile Include="LeafTypes\ComponentReductionLinearLeaf.cs" />
79    <Compile Include="LeafTypes\ConstantLeaf.cs" />
80    <Compile Include="LeafTypes\GaussianProcessLeaf.cs" />
81    <Compile Include="LeafTypes\Leaf.cs" />
82    <Compile Include="LeafTypes\LeafBase.cs" />
83    <Compile Include="LeafTypes\LinearLeaf.cs" />
84    <Compile Include="LeafTypes\RegularizedLeaf.cs" />
85    <Compile Include="MetaModels\RegressionNodeModel.cs" />
86    <Compile Include="MetaModels\RegressionNodeTreeModel.cs" />
87    <Compile Include="MetaModels\RegressionRuleModel.cs" />
88    <Compile Include="MetaModels\RegressionRuleSetModel.cs" />
89    <Compile Include="Plugin.cs" />
90    <Compile Include="Properties\AssemblyInfo.cs" />
91    <Compile Include="Pruning\ComplexityPruning.cs" />
92    <Compile Include="Pruning\NoPruning.cs" />
93    <Compile Include="Splitting\CorrelationImpurityCalculator.cs" />
94    <Compile Include="Splitting\CorrelationSplitter.cs" />
95    <Compile Include="Splitting\NeumaierSum.cs" />
96    <Compile Include="Splitting\OrderImpurityCalculator.cs" />
97    <Compile Include="Splitting\Splitter.cs" />
98    <Compile Include="Splitting\SplitterBase.cs" />
99    <Compile Include="Splitting\UnivariateOnlineLR.cs" />
100    <Compile Include="Utilities\PrincipleComponentTransformation.cs" />
101    <Compile Include="Utilities\RegressionTreeAnalyzer.cs" />
102    <Compile Include="Utilities\RegressionTreeParameters.cs" />
103    <Compile Include="Utilities\RegressionTreeUtilities.cs" />
104  </ItemGroup>
105  <ItemGroup>
106    <ProjectReference Include="..\..\HeuristicLab.Algorithms.DataAnalysis.Glmnet\3.4\HeuristicLab.Algorithms.DataAnalysis.Glmnet-3.4.csproj">
107      <Project>{4c7f6d8a-b279-4898-acd6-7be39111def9}</Project>
108      <Name>HeuristicLab.Algorithms.DataAnalysis.Glmnet-3.4</Name>
109      <Private>False</Private>
110    </ProjectReference>
111    <ProjectReference Include="..\..\HeuristicLab.Algorithms.DataAnalysis\3.4\HeuristicLab.Algorithms.DataAnalysis-3.4.csproj">
112      <Project>{2e782078-fa81-4b70-b56f-74ce38dac6c8}</Project>
113      <Name>HeuristicLab.Algorithms.DataAnalysis-3.4</Name>
114      <Private>False</Private>
115    </ProjectReference>
116    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
117      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
118      <Name>HeuristicLab.Analysis-3.3</Name>
119      <Private>False</Private>
120    </ProjectReference>
121    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
122      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
123      <Name>HeuristicLab.Collections-3.3</Name>
124      <Private>False</Private>
125    </ProjectReference>
126    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
127      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
128      <Name>HeuristicLab.Common-3.3</Name>
129      <Private>False</Private>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
132      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
133      <Name>HeuristicLab.Core-3.3</Name>
134      <Private>False</Private>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
137      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
138      <Name>HeuristicLab.Data-3.3</Name>
139      <Private>False</Private>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
142      <Project>{dbecb8b0-b166-4133-baf1-ed67c3fd7fca}</Project>
143      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
144      <Private>False</Private>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">
147      <Project>{06D4A186-9319-48A0-BADE-A2058D462EEA}</Project>
148      <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>
149      <Private>False</Private>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
152      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
153      <Name>HeuristicLab.Optimization-3.3</Name>
154      <Private>False</Private>
155    </ProjectReference>
156    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
157      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
158      <Name>HeuristicLab.Parameters-3.3</Name>
159      <Private>False</Private>
160    </ProjectReference>
161    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
162      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
163      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
164      <Private>False</Private>
165    </ProjectReference>
166    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
167      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
168      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
169      <Private>False</Private>
170    </ProjectReference>
171    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
172      <Project>{3540e29e-4793-49e7-8ee2-fea7f61c3994}</Project>
173      <Name>HeuristicLab.Problems.Instances-3.3</Name>
174      <Private>False</Private>
175    </ProjectReference>
176    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
177      <Project>{f4539fb6-4708-40c9-be64-0a1390aea197}</Project>
178      <Name>HeuristicLab.Random-3.3</Name>
179      <Private>False</Private>
180    </ProjectReference>
181  </ItemGroup>
182  <ItemGroup>
183    <Reference Include="HEAL.Attic, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
184      <SpecificVersion>False</SpecificVersion>
185      <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
186      <Private>False</Private>
187    </Reference>
188  </ItemGroup>
189  <ItemGroup />
190  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
191  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
192       Other similar extension points exist, see Microsoft.Common.targets.
193  <Target Name="BeforeBuild">
194  </Target>
195  <Target Name="AfterBuild">
196  </Target>
197  -->
198  <PropertyGroup>
199    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
200set ProjectDir=$(ProjectDir)
201set SolutionDir=$(SolutionDir)
202set Outdir=$(Outdir)
203
204call PreBuildEvent.cmd
205</PreBuildEvent>
206    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
207export ProjectDir=$(ProjectDir)
208export SolutionDir=$(SolutionDir)
209
210$SolutionDir/PreBuildEvent.sh
211</PreBuildEvent>
212  </PropertyGroup>
213</Project>
Note: See TracBrowser for help on using the repository browser.