Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ArtificialNeuralNetworks/3.2/HeuristicLab.ArtificialNeuralNetworks-3.2.csproj @ 3061

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

Fixed bugs in MLP operators, extended operators to work for time series prognosis and added pre-configured engine for time series prognosis with MLP. #882 (Artificial neural networks engine for time series prognosis)

File size: 7.5 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>{4744FB81-7F42-4BBA-813E-68CAB6FE07E2}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.ArtificialNeuralNetworks</RootNamespace>
12    <AssemblyName>HeuristicLab.ArtificialNeuralNetworks-3.2</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    <DocumentationFile>bin\x86\Release\HeuristicLab.ArtificialNeuralNetworks-3.2.XML</DocumentationFile>
67  </PropertyGroup>
68  <ItemGroup>
69    <Reference Include="System" />
70    <Reference Include="System.Core">
71      <RequiredTargetFramework>3.5</RequiredTargetFramework>
72    </Reference>
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    <Compile Include="MultiLayerPerceptron.cs" />
84    <Compile Include="HeuristicLabArtificialNeuralNetworksPlugin.cs" />
85    <Compile Include="MultiLayerPerceptronRegression.cs" />
86    <Compile Include="MultiLayerPerceptronRegressionOperator.cs" />
87    <Compile Include="Predictor.cs" />
88    <Compile Include="PredictorBuilder.cs" />
89    <Compile Include="MultiLayerPerceptronEvaluator.cs" />
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
93      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
94      <Name>HeuristicLab.Core-3.2</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj">
97      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
98      <Name>HeuristicLab.DataAnalysis-3.2</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
101      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
102      <Name>HeuristicLab.Data-3.2</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\2.3.0\ALGLIB-2.3.0\ALGLIB-2.3.0.csproj">
105      <Project>{B5EAF001-021A-4572-84E3-FED4B8AEBBAB}</Project>
106      <Name>ALGLIB-2.3.0</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj">
109      <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project>
110      <Name>HeuristicLab.Modeling-3.2</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\..\HeuristicLab.Operators.Programmable\3.2\HeuristicLab.Operators.Programmable-3.2.csproj">
113      <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project>
114      <Name>HeuristicLab.Operators.Programmable-3.2</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
117      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
118      <Name>HeuristicLab.Operators-3.2</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
121      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
122      <Name>HeuristicLab.PluginInfrastructure</Name>
123    </ProjectReference>
124    <ProjectReference Include="..\..\HeuristicLab.Random\3.2\HeuristicLab.Random-3.2.csproj">
125      <Project>{47019A74-F7F7-482E-83AA-D3F4F777E879}</Project>
126      <Name>HeuristicLab.Random-3.2</Name>
127    </ProjectReference>
128    <ProjectReference Include="..\..\HeuristicLab.Selection\3.2\HeuristicLab.Selection-3.2.csproj">
129      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
130      <Name>HeuristicLab.Selection-3.2</Name>
131    </ProjectReference>
132    <ProjectReference Include="..\..\HeuristicLab.SequentialEngine\3.2\HeuristicLab.SequentialEngine-3.2.csproj">
133      <Project>{B4BE8E53-BA06-4237-9A01-24255F880201}</Project>
134      <Name>HeuristicLab.SequentialEngine-3.2</Name>
135    </ProjectReference>
136  </ItemGroup>
137  <ItemGroup>
138    <None Include="HeuristicLab.snk" />
139    <None Include="Properties\AssemblyInfo.frame" />
140    <Compile Include="MultiLayerPerceptronTimeSeries.cs" />
141    <Compile Include="Properties\AssemblyInfo.cs" />
142  </ItemGroup>
143  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
144  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
145       Other similar extension points exist, see Microsoft.Common.targets.
146  <Target Name="BeforeBuild">
147  </Target>
148  <Target Name="AfterBuild">
149  </Target>
150  -->
151  <PropertyGroup>
152    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
153set ProjectDir=$(ProjectDir)
154set SolutionDir=$(SolutionDir)
155set Outdir=$(Outdir)
156
157call PreBuildEvent.cmd</PreBuildEvent>
158  </PropertyGroup>
159</Project>
Note: See TracBrowser for help on using the repository browser.