Add a DPI calculator to help to find the correct image resolution.
[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\Histogram.fs" />
55     <Compile Include="ImgTools\Otsu.fs" />
56     <Compile Include="ImgTools\Drawing.fs" />
57     <Compile Include="ImgTools\Edges.fs" />
58     <Compile Include="ImgTools\Morpho.fs" />
59     <Compile Include="ImgTools\IO.fs" />
60     <Compile Include="ImgTools\ImgTools.fs" />
61     <Compile Include="Granulometry.fs" />
62     <Compile Include="Config.fs" />
63     <Compile Include="KMedians.fs" />
64     <Compile Include="KMeans.fs" />
65     <Compile Include="ParasitesMarker.fs" />
66     <Compile Include="KdTree.fs" />
67     <Compile Include="MatchingEllipses.fs" />
68     <Compile Include="Ellipse.fs" />
69     <Compile Include="Classifier.fs" />
70     <Compile Include="Analysis.fs" />
71     <Content Include="packages.config" />
72   </ItemGroup>
73   <ItemGroup>
74     <Reference Include="Emgu.CV">
75       <HintPath>..\..\..\Emgu\emgucv-windows-universal 3.0.0.2157\bin\Emgu.CV.dll</HintPath>
76     </Reference>
77     <Reference Include="Emgu.Util">
78       <HintPath>..\..\..\Emgu\emgucv-windows-universal 3.0.0.2157\bin\Emgu.Util.dll</HintPath>
79     </Reference>
80     <Reference Include="FSharp.Collections.ParallelSeq">
81       <HintPath>..\packages\FSharp.Collections.ParallelSeq.1.0.2\lib\net40\FSharp.Collections.ParallelSeq.dll</HintPath>
82       <Private>True</Private>
83     </Reference>
84     <Reference Include="FSharp.Core, Version=$(TargetFSharpCoreVersion)">
85       <HintPath>..\packages\FSharp.Core.4.0.0.1\lib\net40\FSharp.Core.dll</HintPath>
86       <Private>True</Private>
87     </Reference>
88     <Reference Include="MathNet.Numerics">
89       <HintPath>..\packages\MathNet.Numerics.3.10.0\lib\net40\MathNet.Numerics.dll</HintPath>
90       <Private>True</Private>
91     </Reference>
92     <Reference Include="MathNet.Numerics.FSharp">
93       <HintPath>..\packages\MathNet.Numerics.FSharp.3.10.0\lib\net40\MathNet.Numerics.FSharp.dll</HintPath>
94       <Private>True</Private>
95     </Reference>
96     <Reference Include="mscorlib" />
97     <Reference Include="System" />
98     <Reference Include="System.Core" />
99     <Reference Include="System.Drawing" />
100     <Reference Include="System.Numerics" />
101   </ItemGroup>
102   <ItemGroup>
103     <ProjectReference Include="..\Logger\Logger.fsproj">
104       <Name>Logger</Name>
105       <Project>{a4f183ae-562a-4bad-88e6-658b4ce15dc3}</Project>
106       <Private>True</Private>
107     </ProjectReference>
108   </ItemGroup>
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 </Project>