Output logs to AppUser/Roaming/Parasitemia/Logs
[master-thesis.git] / Parasitemia / ParasitemiaUI / ParasitemiaUI.fsproj
1 <Project Sdk="Microsoft.NET.Sdk">
2
3   <PropertyGroup>
4     <OutputType>WinExe</OutputType>
5     <TargetFramework>net5.0-windows</TargetFramework>
6     <UseWPF>true</UseWPF>
7     <AssemblyVersion>1.0.0.14</AssemblyVersion>
8     <FileVersion>1.0.0.14</FileVersion>
9     <Version>1.0.14</Version>
10     <Authors>Greg Burri</Authors>
11     <Company>CHUV &amp; HES-SO</Company>
12     <Win32Resource></Win32Resource>
13   </PropertyGroup>
14
15   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
16     <OtherFlags>--win32res:resources.res</OtherFlags>
17   </PropertyGroup>
18
19   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
20     <DefineConstants>DEBUG;TRACE</DefineConstants>
21   </PropertyGroup>
22
23   <ItemGroup>
24     <Compile Include="Constants.fs" />
25     <Compile Include="Types.fs" />
26     <Compile Include="Utils.fs" />
27     <Compile Include="SourceImage.fs" />
28     <Compile Include="PiaZ.fs" />
29     <Compile Include="State.fs" />
30     <Compile Include="Export.fs" />
31     <Compile Include="DPICalculator.fs" />
32     <Compile Include="BitmapSourceConvert.fs" />
33     <Compile Include="Analysis.fs" />
34     <Compile Include="CommandLineArguments.fs" />
35     <Compile Include="About.fs" />
36     <Compile Include="GUI.fs" />
37     <Compile Include="Args.fs" />
38     <Compile Include="Program.fs" />
39     <Content Include="License-LGPL.txt" />
40     <Content Include="OpenTK.dll.config" />
41   </ItemGroup>
42
43   <ItemGroup>
44     <PackageReference Include="Emgu.CV" Version="4.5.1.4349" />
45     <PackageReference Include="Emgu.CV.Bitmap" Version="4.5.1.4349" />
46     <PackageReference Include="Emgu.CV.runtime.windows" Version="4.5.1.4349" />
47     <PackageReference Include="FSharp.ViewModule.Core" Version="1.0.7" />
48     <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
49     <PackageReference Include="System.Drawing.Common" Version="5.0.2" />
50   </ItemGroup>
51
52   <ItemGroup>
53     <ProjectReference Include="..\Logger\Logger.fsproj" />
54     <ProjectReference Include="..\ParasitemiaCore\ParasitemiaCore.fsproj" />
55     <ProjectReference Include="..\ParasitemiaUIControls\ParasitemiaUIControls.csproj" />
56   </ItemGroup>
57
58   <ItemGroup>
59     <PackageReference Update="FSharp.Core" Version="5.0.1" />
60   </ItemGroup>
61
62 </Project>