Fix a bug during area opening/closing when the area value may become negative.
[master-thesis.git] / Parasitemia / ParasitemiaCore / ParasitemiaCore.fsproj
1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="14.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     <SchemaVersion>2.0</SchemaVersion>
8     <ProjectGuid>0f8a85f4-9328-40c3-b8ff-44fb39ceb01f</ProjectGuid>
9     <OutputType>Library</OutputType>
10     <RootNamespace>ParasitemiaCore</RootNamespace>
11     <AssemblyName>ParasitemiaCore</AssemblyName>
12     <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
13     <TargetFSharpCoreVersion>4.4.0.0</TargetFSharpCoreVersion>
14     <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15     <Name>ParasitemiaCore</Name>
16     <TargetFrameworkProfile />
17   </PropertyGroup>
18   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19     <DebugSymbols>true</DebugSymbols>
20     <DebugType>full</DebugType>
21     <Optimize>false</Optimize>
22     <Tailcalls>false</Tailcalls>
23     <OutputPath>bin\Debug\</OutputPath>
24     <DefineConstants>DEBUG;TRACE</DefineConstants>
25     <WarningLevel>3</WarningLevel>
26     <DocumentationFile>bin\Debug\ParasitemiaCore.XML</DocumentationFile>
27     <PlatformTarget>AnyCPU</PlatformTarget>
28   </PropertyGroup>
29   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30     <DebugType>pdbonly</DebugType>
31     <Optimize>true</Optimize>
32     <Tailcalls>true</Tailcalls>
33     <OutputPath>bin\Release\</OutputPath>
34     <DefineConstants>TRACE</DefineConstants>
35     <WarningLevel>3</WarningLevel>
36     <DocumentationFile>bin\Release\ParasitemiaCore.XML</DocumentationFile>
37     <PlatformTarget>AnyCPU</PlatformTarget>
38   </PropertyGroup>
39   <PropertyGroup>
40     <MinimumVisualStudioVersion Condition="'$(MinimumVisualStudioVersion)' == ''">11</MinimumVisualStudioVersion>
41   </PropertyGroup>
42   <PropertyGroup Condition="Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets')">
43     <FSharpTargetsPath>$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\FSharp\Microsoft.FSharp.Targets</FSharpTargetsPath>
44   </PropertyGroup>
45   <Import Project="$(FSharpTargetsPath)" />
46   <ItemGroup>
47     <Compile Include="AssemblyInfo.fs" />
48     <Compile Include="Heap.fs" />
49     <Compile Include="UnitsOfMeasure.fs" />
50     <Compile Include="Const.fs" />
51     <Compile Include="Types.fs" />
52     <Compile Include="EEOver.fs" />
53     <Compile Include="Utils.fs" />
54     <Compile Include="ImgTools.fs" />
55     <Compile Include="Granulometry.fs" />
56     <Compile Include="Config.fs" />
57     <Compile Include="KMedians.fs" />
58     <Compile Include="KMeans.fs" />
59     <Compile Include="ParasitesMarker.fs" />
60     <Compile Include="KdTree.fs" />
61     <Compile Include="MatchingEllipses.fs" />
62     <Compile Include="Ellipse.fs" />
63     <Compile Include="Classifier.fs" />
64     <Compile Include="MainAnalysis.fs" />
65     <Content Include="packages.config" />
66   </ItemGroup>
67   <ItemGroup>
68     <Reference Include="Emgu.CV">
69       <HintPath>..\..\..\Emgu\emgucv-windows-universal 3.0.0.2157\bin\Emgu.CV.dll</HintPath>
70     </Reference>
71     <Reference Include="Emgu.Util">
72       <HintPath>..\..\..\Emgu\emgucv-windows-universal 3.0.0.2157\bin\Emgu.Util.dll</HintPath>
73     </Reference>
74     <Reference Include="FSharp.Collections.ParallelSeq">
75       <HintPath>..\packages\FSharp.Collections.ParallelSeq.1.0.2\lib\net40\FSharp.Collections.ParallelSeq.dll</HintPath>
76       <Private>True</Private>
77     </Reference>
78     <Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion)">
79       <HintPath>..\packages\FSharp.Core.4.0.0.1\lib\net40\FSharp.Core.dll</HintPath>
80       <Private>True</Private>
81     </Reference>
82     <Reference Include="MathNet.Numerics">
83       <HintPath>..\packages\MathNet.Numerics.3.10.0\lib\net40\MathNet.Numerics.dll</HintPath>
84       <Private>True</Private>
85     </Reference>
86     <Reference Include="MathNet.Numerics.FSharp">
87       <HintPath>..\packages\MathNet.Numerics.FSharp.3.10.0\lib\net40\MathNet.Numerics.FSharp.dll</HintPath>
88       <Private>True</Private>
89     </Reference>
90     <Reference Include="mscorlib" />
91     <Reference Include="System" />
92     <Reference Include="System.Core" />
93     <Reference Include="System.Drawing" />
94     <Reference Include="System.Numerics" />
95   </ItemGroup>
96   <ItemGroup>
97     <ProjectReference Include="..\Logger\Logger.fsproj">
98       <Name>Logger</Name>
99       <Project>{a4f183ae-562a-4bad-88e6-658b4ce15dc3}</Project>
100       <Private>True</Private>
101     </ProjectReference>
102   </ItemGroup>
103   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
104        Other similar extension points exist, see Microsoft.Common.targets.
105   <Target Name="BeforeBuild">
106   </Target>
107   <Target Name="AfterBuild">
108   </Target>
109   -->
110 </Project>