Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataAnalysis/HeuristicLab.DataAnalysis.csproj @ 312

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

added possibility to manually scale data. (ticket #167)

File size: 5.0 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>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.DataAnalysis</RootNamespace>
12    <AssemblyName>HeuristicLab.DataAnalysis</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    <DocumentationFile>bin\Release\HeuristicLab.DataAnalysis.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Drawing" />
42    <Reference Include="System.Windows.Forms" />
43    <Reference Include="System.Xml.Linq">
44      <RequiredTargetFramework>3.5</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Data.DataSetExtensions">
47      <RequiredTargetFramework>3.5</RequiredTargetFramework>
48    </Reference>
49    <Reference Include="System.Data" />
50    <Reference Include="System.Xml" />
51  </ItemGroup>
52  <ItemGroup>
53    <Compile Include="DataFormatException.cs" />
54    <Compile Include="Dataset.cs" />
55    <Compile Include="DatasetParser.cs" />
56    <Compile Include="DatasetView.cs">
57      <SubType>UserControl</SubType>
58    </Compile>
59    <Compile Include="DatasetView.designer.cs">
60      <DependentUpon>DatasetView.cs</DependentUpon>
61    </Compile>
62    <Compile Include="HeuristicLabDataAnalysisPlugin.cs" />
63    <Compile Include="IDatasetManipulator.cs" />
64    <Compile Include="ManualScalingControl.cs">
65      <SubType>Form</SubType>
66    </Compile>
67    <Compile Include="ManualScalingControl.Designer.cs">
68      <DependentUpon>ManualScalingControl.cs</DependentUpon>
69    </Compile>
70    <Compile Include="Properties\AssemblyInfo.cs" />
71    <Compile Include="Regression.cs" />
72    <Compile Include="Statistics.cs" />
73    <Compile Include="SvmExporter.cs">
74      <SubType>Form</SubType>
75    </Compile>
76  </ItemGroup>
77  <ItemGroup>
78    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
79      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
80      <Name>HeuristicLab.Core</Name>
81    </ProjectReference>
82    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
83      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
84      <Name>HeuristicLab.Data</Name>
85    </ProjectReference>
86    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
87      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
88      <Name>HeuristicLab.PluginInfrastructure</Name>
89    </ProjectReference>
90  </ItemGroup>
91  <ItemGroup>
92    <None Include="HeuristicLab.snk" />
93    <None Include="Properties\AssemblyInfo.frame" />
94  </ItemGroup>
95  <ItemGroup>
96    <EmbeddedResource Include="DatasetView.resx">
97      <DependentUpon>DatasetView.cs</DependentUpon>
98      <SubType>Designer</SubType>
99    </EmbeddedResource>
100    <EmbeddedResource Include="ManualScalingControl.resx">
101      <DependentUpon>ManualScalingControl.cs</DependentUpon>
102    </EmbeddedResource>
103    <EmbeddedResource Include="SvmExporter.resx">
104      <DependentUpon>SvmExporter.cs</DependentUpon>
105      <SubType>Designer</SubType>
106    </EmbeddedResource>
107  </ItemGroup>
108  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
109  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
110       Other similar extension points exist, see Microsoft.Common.targets.
111  <Target Name="BeforeBuild">
112  </Target>
113  <Target Name="AfterBuild">
114  </Target>
115  -->
116  <PropertyGroup>
117    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
118  </PropertyGroup>
119</Project>
Note: See TracBrowser for help on using the repository browser.