Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj @ 13502

Last change on this file since 13502 was 13502, checked in by pfleck, 8 years ago

#2559

  • Adapted import and export for preprocessing.
  • Added MenuItem to be able to open Preprocessing without creating a DataAnalysisProblem before.
  • Added coloring in ScatterPlot.
  • Removed IPreprocessingContext interface.
  • Reformatted code:
    • Added missing copyright headers.
    • Corrected namespaces.
    • Deleted unnecessary usings.
    • Applied correct formatting.
File size: 9.5 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.5</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    <Prefer32Bit>false</Prefer32Bit>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>..\..\bin\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <Prefer32Bit>false</Prefer32Bit>
35  </PropertyGroup>
36  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
37    <PlatformTarget>x64</PlatformTarget>
38    <OutputPath>..\..\bin\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <Prefer32Bit>false</Prefer32Bit>
41  </PropertyGroup>
42  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
43    <PlatformTarget>x64</PlatformTarget>
44    <OutputPath>..\..\bin\</OutputPath>
45    <Optimize>true</Optimize>
46    <Prefer32Bit>false</Prefer32Bit>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
49    <DebugSymbols>true</DebugSymbols>
50    <OutputPath>..\..\bin\</OutputPath>
51    <DefineConstants>DEBUG;TRACE</DefineConstants>
52    <DebugType>full</DebugType>
53    <PlatformTarget>x86</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56    <Prefer32Bit>false</Prefer32Bit>
57  </PropertyGroup>
58  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
59    <OutputPath>..\..\bin\</OutputPath>
60    <DefineConstants>TRACE</DefineConstants>
61    <Optimize>true</Optimize>
62    <DebugType>pdbonly</DebugType>
63    <PlatformTarget>x86</PlatformTarget>
64    <ErrorReport>prompt</ErrorReport>
65    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
66    <Prefer32Bit>false</Prefer32Bit>
67  </PropertyGroup>
68  <PropertyGroup>
69    <SignAssembly>true</SignAssembly>
70  </PropertyGroup>
71  <PropertyGroup>
72    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
73  </PropertyGroup>
74  <ItemGroup>
75    <Reference Include="System" />
76    <Reference Include="System.Core" />
77    <Reference Include="System.Drawing" />
78  </ItemGroup>
79  <ItemGroup>
80    <Compile Include="Implementations\ScatterPlotContent.cs" />
81    <Compile Include="Implementations\DataCompletenessChartContent.cs" />
82    <Compile Include="Implementations\FilteredPreprocessingData.cs" />
83    <Compile Include="Implementations\ManipulationContent.cs" />
84    <Compile Include="Implementations\PreprocessingChartContent.cs" />
85    <Compile Include="Implementations\PreprocessingData.cs" />
86    <Compile Include="Implementations\PreprocessingDataTable.cs" />
87    <Compile Include="Interfaces\IViewChartShortcut.cs" />
88    <Compile Include="Interfaces\IFilteredPreprocessingData.cs" />
89    <Compile Include="Implementations\CorrelationMatrixContent.cs" />
90    <Compile Include="PreprocessingTransformator.cs" />
91    <Compile Include="Utils\DataPreprocessingChangedEvent.cs" />
92    <Compile Include="Implementations\Filter\ComparisonFilter.cs" />
93    <Compile Include="Implementations\Filter\IFilter.cs" />
94    <Compile Include="Implementations\ManipulationLogic.cs" />
95    <Compile Include="Interfaces\IPreprocessingData.cs" />
96    <Compile Include="Interfaces\IDataGridLogic.cs" />
97    <Compile Include="Implementations\FilterContent.cs" />
98    <Compile Include="Implementations\FilterLogic.cs" />
99    <Compile Include="Implementations\HistogramContent.cs" />
100    <Compile Include="Implementations\LineChartContent.cs" />
101    <Compile Include="Implementations\StatisticsContent.cs" />
102    <Compile Include="Implementations\TransformationContent.cs" />
103    <Compile Include="Interfaces\IFilterLogic.cs" />
104    <Compile Include="Interfaces\IManipulationLogic.cs" />
105    <Compile Include="Interfaces\ITransformationLogic.cs" />
106    <Compile Include="Interfaces\IViewShortcut.cs" />
107    <Compile Include="ProblemDataCreator.cs" />
108    <None Include="Plugin.cs.frame" />
109    <Compile Include="Implementations\DataGridContent.cs" />
110    <Compile Include="PreprocessingContext.cs" />
111    <Compile Include="Implementations\TransactionalPreprocessingData.cs" />
112    <Compile Include="Implementations\SearchLogic.cs" />
113    <Compile Include="Implementations\StatisticsLogic.cs" />
114    <Compile Include="Interfaces\IDataGridContent.cs" />
115    <Compile Include="Interfaces\ISearchLogic.cs" />
116    <Compile Include="Interfaces\IStatisticsLogic.cs" />
117    <Compile Include="Interfaces\ITransactionalPreprocessingData.cs" />
118    <Compile Include="Plugin.cs" />
119    <Compile Include="Properties\AssemblyInfo.cs" />
120    <None Include="Properties\AssemblyInfo.cs.frame" />
121  </ItemGroup>
122  <ItemGroup>
123    <None Include="HeuristicLab.snk" />
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      <Private>False</Private>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
132      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
133      <Name>HeuristicLab.Collections-3.3</Name>
134      <Private>False</Private>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
137      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
138      <Name>HeuristicLab.Common.Resources-3.3</Name>
139      <Private>False</Private>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
142      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
143      <Name>HeuristicLab.Common-3.3</Name>
144      <Private>False</Private>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
147      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
148      <Name>HeuristicLab.Core-3.3</Name>
149      <Private>False</Private>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
152      <Project>{bbab9df5-5ef3-4ba8-ade9-b36e82114937}</Project>
153      <Name>HeuristicLab.Data-3.3</Name>
154      <Private>False</Private>
155    </ProjectReference>
156    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
157      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
158      <Name>HeuristicLab.Optimization-3.3</Name>
159      <Private>False</Private>
160    </ProjectReference>
161    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
162      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
163      <Name>HeuristicLab.Persistence-3.3</Name>
164    </ProjectReference>
165    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
166      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
167      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
168      <Private>False</Private>
169    </ProjectReference>
170    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
171      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
172      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
173      <Private>False</Private>
174    </ProjectReference>
175  </ItemGroup>
176  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
177  <PropertyGroup>
178    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
179set ProjectDir=$(ProjectDir)
180set SolutionDir=$(SolutionDir)
181set Outdir=$(Outdir)
182
183call PreBuildEvent.cmd
184</PreBuildEvent>
185    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
186export ProjectDir=$(ProjectDir)
187export SolutionDir=$(SolutionDir)
188
189$SolutionDir/PreBuildEvent.sh
190</PreBuildEvent>
191  </PropertyGroup>
192  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
193       Other similar extension points exist, see Microsoft.Common.targets.
194  <Target Name="BeforeBuild">
195  </Target>
196  <Target Name="AfterBuild">
197  </Target>
198  -->
199</Project>
Note: See TracBrowser for help on using the repository browser.