Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.DataPreprocessing/3.4/HeuristicLab.DataPreprocessing-3.4.csproj @ 16462

Last change on this file since 16462 was 16462, checked in by jkarder, 5 years ago

#2520: worked on reintegration of new persistence

  • added nuget references to HEAL.Fossil
  • added StorableType attributes to many classes
  • changed signature of StorableConstructors
  • removed some classes in old persistence
  • removed some unnecessary usings
File size: 9.9 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.6.1</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>$(SolutionDir)\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>$(SolutionDir)\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>$(SolutionDir)\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>$(SolutionDir)\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>$(SolutionDir)\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>$(SolutionDir)\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="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
76      <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
77    </Reference>
78    <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
79      <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath>
80    </Reference>
81    <Reference Include="System" />
82    <Reference Include="System.Core" />
83    <Reference Include="System.Drawing" />
84  </ItemGroup>
85  <ItemGroup>
86    <Compile Include="Content\MultiScatterPlotContent.cs" />
87    <Compile Include="Content\PreprocessingContent.cs" />
88    <Compile Include="Content\SingleScatterPlotContent.cs" />
89    <Compile Include="Content\ScatterPlotContent.cs" />
90    <Compile Include="Content\DataCompletenessChartContent.cs" />
91    <Compile Include="Data\FilteredPreprocessingData.cs" />
92    <Compile Include="Content\ManipulationContent.cs" />
93    <Compile Include="Content\PreprocessingChartContent.cs" />
94    <Compile Include="Data\PreprocessingData.cs" />
95    <Compile Include="Data\IFilteredPreprocessingData.cs" />
96    <Compile Include="Content\CorrelationMatrixContent.cs" />
97    <Compile Include="PreprocessingTransformator.cs" />
98    <Compile Include="Data\DataPreprocessingChangedEvent.cs" />
99    <Compile Include="Filter\ComparisonFilter.cs" />
100    <Compile Include="Filter\IFilter.cs" />
101    <Compile Include="Data\IPreprocessingData.cs" />
102    <Compile Include="Content\FilterContent.cs" />
103    <Compile Include="Content\HistogramContent.cs" />
104    <Compile Include="Content\LineChartContent.cs" />
105    <Compile Include="Content\StatisticsContent.cs" />
106    <Compile Include="Content\TransformationContent.cs" />
107    <Compile Include="Content\IViewShortcut.cs" />
108    <Compile Include="ProblemDataCreator.cs" />
109    <None Include="packages.config" />
110    <None Include="Plugin.cs.frame" />
111    <Compile Include="Content\DataGridContent.cs" />
112    <Compile Include="PreprocessingContext.cs" />
113    <Compile Include="Plugin.cs" />
114    <Compile Include="Properties\AssemblyInfo.cs" />
115    <None Include="Properties\AssemblyInfo.cs.frame" />
116  </ItemGroup>
117  <ItemGroup>
118    <None Include="HeuristicLab.snk" />
119  </ItemGroup>
120  <ItemGroup>
121    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
122      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
123      <Name>HeuristicLab.Analysis-3.3</Name>
124      <Private>False</Private>
125    </ProjectReference>
126    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
127      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
128      <Name>HeuristicLab.Collections-3.3</Name>
129      <Private>False</Private>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
132      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
133      <Name>HeuristicLab.Common.Resources-3.3</Name>
134      <Private>False</Private>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
137      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
138      <Name>HeuristicLab.Common-3.3</Name>
139      <Private>False</Private>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
142      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
143      <Name>HeuristicLab.Core-3.3</Name>
144      <Private>False</Private>
145    </ProjectReference>
146    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
147      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
148      <Name>HeuristicLab.Data-3.3</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.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
157      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
158      <Name>HeuristicLab.Persistence-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.Random\3.3\HeuristicLab.Random-3.3.csproj">
172      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
173      <Name>HeuristicLab.Random-3.3</Name>
174      <Private>False</Private>
175    </ProjectReference>
176    <ProjectReference Include="..\..\HeuristicLab.Visualization.ChartControlsExtensions\3.3\HeuristicLab.Visualization.ChartControlsExtensions-3.3.csproj">
177      <Project>{315BDA09-3F4F-49B3-9790-B37CFC1C5750}</Project>
178      <Name>HeuristicLab.Visualization.ChartControlsExtensions-3.3</Name>
179      <Private>False</Private>
180    </ProjectReference>
181  </ItemGroup>
182  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
183  <PropertyGroup>
184    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
185set ProjectDir=$(ProjectDir)
186set SolutionDir=$(SolutionDir)
187set Outdir=$(Outdir)
188
189call PreBuildEvent.cmd
190</PreBuildEvent>
191    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
192export ProjectDir=$(ProjectDir)
193export SolutionDir=$(SolutionDir)
194
195$SolutionDir/PreBuildEvent.sh
196</PreBuildEvent>
197  </PropertyGroup>
198  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
199       Other similar extension points exist, see Microsoft.Common.targets.
200  <Target Name="BeforeBuild">
201  </Target>
202  <Target Name="AfterBuild">
203  </Target>
204  -->
205</Project>
Note: See TracBrowser for help on using the repository browser.