Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj @ 10962

Last change on this file since 10962 was 10962, checked in by aesterer, 10 years ago

Added cloning for chart contents on double click

File size: 10.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.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>{3B90F866-70F8-43EF-A541-51819D255B7B}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.DataPreprocessing</RootNamespace>
11    <AssemblyName>HeuristicLab.DataPreprocessing-3.4</AssemblyName>
12    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24    <UseVSHostingProcess>false</UseVSHostingProcess>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
35    <PlatformTarget>x64</PlatformTarget>
36    <OutputPath>..\..\bin\</OutputPath>
37    <DefineConstants>DEBUG;TRACE</DefineConstants>
38  </PropertyGroup>
39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
40    <PlatformTarget>x64</PlatformTarget>
41    <OutputPath>..\..\bin\</OutputPath>
42    <Optimize>true</Optimize>
43  </PropertyGroup>
44  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
45    <DebugSymbols>true</DebugSymbols>
46    <OutputPath>..\..\bin\</OutputPath>
47    <DefineConstants>DEBUG;TRACE</DefineConstants>
48    <DebugType>full</DebugType>
49    <PlatformTarget>x86</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
52  </PropertyGroup>
53  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
54    <OutputPath>..\..\bin\</OutputPath>
55    <DefineConstants>TRACE</DefineConstants>
56    <Optimize>true</Optimize>
57    <DebugType>pdbonly</DebugType>
58    <PlatformTarget>x86</PlatformTarget>
59    <ErrorReport>prompt</ErrorReport>
60    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
61  </PropertyGroup>
62  <PropertyGroup>
63    <SignAssembly>true</SignAssembly>
64  </PropertyGroup>
65  <PropertyGroup>
66    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
67  </PropertyGroup>
68  <ItemGroup>
69    <Reference Include="System" />
70    <Reference Include="System.Core" />
71    <Reference Include="System.Drawing" />
72  </ItemGroup>
73  <ItemGroup>
74    <Compile Include="Implementations\ScatterPlotContent.cs" />
75    <Compile Include="Implementations\DataCompletenessChartContent.cs" />
76    <Compile Include="Implementations\FilteredPreprocessingData.cs" />
77    <Compile Include="Implementations\ManipulationContent.cs" />
78    <Compile Include="Implementations\PreprocessingChartContent.cs" />
79    <Compile Include="Implementations\PreprocessingData.cs" />
80    <Compile Include="Implementations\DataGridLogic.cs" />
81    <Compile Include="Implementations\PreprocessingDataTable.cs" />
82    <Compile Include="Interfaces\IViewChartShortcut.cs" />
83    <Compile Include="Interfaces\IFilteredPreprocessingData.cs" />
84    <Compile Include="Implementations\CorrelationMatrixContent.cs" />
85    <Compile Include="PreprocessingTransformator.cs" />
86    <Compile Include="Utils\DataPreprocessingChangedEvent.cs" />
87    <Compile Include="Implementations\Filter\ComparisonFilter.cs" />
88    <Compile Include="Implementations\Filter\IFilter.cs" />
89    <Compile Include="Implementations\ManipulationLogic.cs" />
90    <Compile Include="Interfaces\IPreprocessingData.cs" />
91    <Compile Include="Interfaces\IDataGridLogic.cs" />
92    <Compile Include="Implementations\FilterContent.cs" />
93    <Compile Include="Implementations\FilterLogic.cs" />
94    <Compile Include="Implementations\HistogramContent.cs" />
95    <Compile Include="Implementations\LineChartContent.cs" />
96    <Compile Include="Implementations\ChartLogic.cs" />
97    <Compile Include="Implementations\StatisticsContent.cs" />
98    <Compile Include="Implementations\TransformationContent.cs" />
99    <Compile Include="Interfaces\IFilterLogic.cs" />
100    <Compile Include="Interfaces\IChartLogic.cs" />
101    <Compile Include="Interfaces\IManipulationLogic.cs" />
102    <Compile Include="Interfaces\ITransformationLogic.cs" />
103    <Compile Include="Interfaces\IViewShortcut.cs" />
104    <Compile Include="ProblemDataCreator.cs" />
105    <None Include="Plugin.cs.frame" />
106    <Compile Include="Implementations\DataGridContent.cs" />
107    <Compile Include="Implementations\PreprocessingContext.cs" />
108    <Compile Include="Implementations\TransactionalPreprocessingData.cs" />
109    <Compile Include="Implementations\SearchLogic.cs" />
110    <Compile Include="Implementations\StatisticsLogic.cs" />
111    <Compile Include="Interfaces\IDataGridContent.cs" />
112    <Compile Include="Interfaces\IPreprocessingContext.cs" />
113    <Compile Include="Interfaces\ISearchLogic.cs" />
114    <Compile Include="Interfaces\IStatisticsLogic.cs" />
115    <Compile Include="Interfaces\ITransactionalPreprocessingData.cs" />
116    <Compile Include="Plugin.cs" />
117    <Compile Include="Properties\AssemblyInfo.cs" />
118    <None Include="Properties\AssemblyInfo.cs.frame" />
119  </ItemGroup>
120  <ItemGroup>
121    <None Include="HeuristicLab.snk" />
122  </ItemGroup>
123  <ItemGroup>
124    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
125      <Project>{887425b4-4348-49ed-a457-b7d2c26ddbf9}</Project>
126      <Name>HeuristicLab.Analysis-3.3</Name>
127      <Private>False</Private>
128    </ProjectReference>
129    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
130      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
131      <Name>HeuristicLab.Collections-3.3</Name>
132      <Private>False</Private>
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      <Private>False</Private>
138    </ProjectReference>
139    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
140      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
141      <Name>HeuristicLab.Common-3.3</Name>
142      <Private>False</Private>
143    </ProjectReference>
144    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
145      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
146      <Name>HeuristicLab.Core-3.3</Name>
147      <Private>False</Private>
148    </ProjectReference>
149    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
150      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
151      <Name>HeuristicLab.Data-3.3</Name>
152      <Private>False</Private>
153    </ProjectReference>
154    <ProjectReference Include="..\..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">
155      <Project>{06d4a186-9319-48a0-bade-a2058d462eea}</Project>
156      <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>
157      <Private>False</Private>
158    </ProjectReference>
159    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
160      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
161      <Name>HeuristicLab.Optimization-3.3</Name>
162      <Private>False</Private>
163    </ProjectReference>
164    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
165      <Project>{56f9106a-079f-4c61-92f6-86a84c2d84b7}</Project>
166      <Name>HeuristicLab.Parameters-3.3</Name>
167      <Private>False</Private>
168    </ProjectReference>
169    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
170      <Project>{102bc7d3-0ef9-439c-8f6d-96ff0fdb8e1b}</Project>
171      <Name>HeuristicLab.Persistence-3.3</Name>
172      <Private>False</Private>
173    </ProjectReference>
174    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
175      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
176      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
177      <Private>False</Private>
178    </ProjectReference>
179    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">
180      <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>
181      <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name>
182      <Private>False</Private>
183    </ProjectReference>
184    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis.Transformations\3.4\HeuristicLab.Problems.DataAnalysis.Transformations-3.4.csproj">
185      <Project>{2e257a94-d1af-435c-99b4-5ac00eadfd6a}</Project>
186      <Name>HeuristicLab.Problems.DataAnalysis.Transformations-3.4</Name>
187      <Private>False</Private>
188    </ProjectReference>
189    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
190      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
191      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
192      <Private>False</Private>
193    </ProjectReference>
194  </ItemGroup>
195  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
196  <PropertyGroup>
197    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
198set ProjectDir=$(ProjectDir)
199set SolutionDir=$(SolutionDir)
200set Outdir=$(Outdir)
201
202call PreBuildEvent.cmd</PreBuildEvent>
203  </PropertyGroup>
204  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
205       Other similar extension points exist, see Microsoft.Common.targets.
206  <Target Name="BeforeBuild">
207  </Target>
208  <Target Name="AfterBuild">
209  </Target>
210  -->
211</Project>
Note: See TracBrowser for help on using the repository browser.