projects
/
master-thesis.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
bef3910e15399291b81067420dd5748447d9f091
[master-thesis.git]
/
Parasitemia
/
ParasitemiaUI
/
Constants.fs
1
module
ParasitemiaUI
.
Constants
2
3
open
System
4
open
System
.
IO
5
6
let
USER_DIRECTORY
=
7
Path
.
Combine
(
8
Environment
.
GetFolderPath Environment
.
SpecialFolder
.
ApplicationData
,
9
"Parasitemia"
10
)
11
12
let
USER_DIRECTORY_LOG
=
13
Path
.
Combine
(
14
USER_DIRECTORY
,
15
"Log"
,
16
#if DEBUG
17
"Debug"
18
#else
19
""
20
#endif
21
)