diff --git a/BetterThanRacket.fs b/BetterThanRacket.fs
new file mode 100755
index 0000000..266a8b3
--- /dev/null
+++ b/BetterThanRacket.fs
@@ -0,0 +1,47 @@
+namespace BetterThanRacket
+
+open System
+
+module BinaryTreeHausübung =
+ type BinaryTree = {
+ value: int
+ left: BinaryTree option
+ right: BinaryTree option
+ }
+
+ let smallTree = {
+ value = 5;
+ left = Some {
+ value = 3;
+ left = Some {
+ value = 1; left = None; right = None
+ }
+ right = Some {
+ value = 4; left = None; right = None
+ }
+ }
+ right = Some {
+ value = 9;
+ left = Some {
+ value = 6; left = None; right = None
+ }
+ right = Some {
+ value = 11; left = None; right = None
+ }
+ }
+ }
+
+ let rec BinaryTreeContains (value:int) (btn:BinaryTree) =
+ if btn.value = value then true
+ else
+ if value < btn.value then
+ match btn.left with
+ | Some BinaryTree -> BinaryTreeContains value btn.left.Value
+ | None -> false
+ else
+ if Option.isSome btn.right then
+ BinaryTreeContains value btn.right.Value
+ else false
+
+ let rec InsertIntoBinaryTree (value:int) (btn:BinaryTree) =
+ 0
\ No newline at end of file
diff --git a/FSharpTest.fsproj b/FSharpTest.fsproj
new file mode 100755
index 0000000..a1b3254
--- /dev/null
+++ b/FSharpTest.fsproj
@@ -0,0 +1,11 @@
+
+
+ Exe
+ netcoreapp2.1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/FSharpTest.sln b/FSharpTest.sln
new file mode 100755
index 0000000..a3490cc
--- /dev/null
+++ b/FSharpTest.sln
@@ -0,0 +1,17 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "FSharpTest", "FSharpTest.fsproj", "{5F2677D3-E1C3-4C0C-9184-7F9C5838DEF2}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {5F2677D3-E1C3-4C0C-9184-7F9C5838DEF2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5F2677D3-E1C3-4C0C-9184-7F9C5838DEF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5F2677D3-E1C3-4C0C-9184-7F9C5838DEF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5F2677D3-E1C3-4C0C-9184-7F9C5838DEF2}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
diff --git a/OtherFile.fs b/OtherFile.fs
new file mode 100755
index 0000000..7d6e93c
--- /dev/null
+++ b/OtherFile.fs
@@ -0,0 +1,4 @@
+namespace SomeNamespace
+
+module SomeModule =
+ let theAnswer = 42
\ No newline at end of file
diff --git a/Program.fs b/Program.fs
new file mode 100755
index 0000000..37edfcf
--- /dev/null
+++ b/Program.fs
@@ -0,0 +1,106 @@
+// Learn more about F# at http://fsharp.org
+
+open System
+
+open SomeNamespace.SomeModule
+
+open BetterThanRacket
+
+open System.Numerics
+open System.Collections.Generic
+
+//open System.Windows.Forms
+
+(* let rec fib n =
+ if n = 0 then 0
+ else if n = 1 then 1
+ else fib(n-2) + fib(n-1) *)
+
+
+(*
+let rec fib n =
+ match n with
+ | 0 -> 0
+ | 1 -> 1
+ | _ -> fib(n-2) + fib(n-1)
+*)
+
+
+(* let rec fib n =
+ match n with
+ | 0 | 1 -> n
+ | _ -> fib(n-2) + fib (n-1) *)
+
+
+(*
+let rec factorial n =
+ if n = 0 then 1
+ else n * factorial(n-1)
+*)
+
+(*
+let rec factorial n =
+ match n with
+ | 0 -> 1
+ | _ -> n * factorial(n-1)
+*)
+
+type Student = {
+ LastName : string
+ FirstName : string
+ EnrollmentNumber : int
+ Fee:int
+}
+
+(*
+let sumOfStudentFees stud =
+ stud
+ // You don't even need to filter all students because they are
+ // automatically students
+ |> List.map (fun x -> x.Fee)
+ |> List.fold (fun x y -> x + y) 0
+*)
+
+(*
+let sumOfStudentFees stud =
+ stud
+ // You don't even need to filter all students because they are
+ // automatically students
+ |> List.map (fun x -> x.Fee)
+ |> List.fold (( + )) 0
+*)
+
+(*let sumOfStudentFees stud =
+ List.sumBy (fun x -> x.Fee) stud
+*)
+[]
+let main argv =
+ (*let result = fib 10
+ printfn "%d" result
+
+ let myList = [1;4;5;3;2]
+ List.map (fun x -> printfn "%d" x) myList |> ignore*)
+
+ (*let marcus = { LastName = "Müller"; FirstName = "Marcus"; EnrollmentNumber = 0; Fee = 100 }
+ let marc = { LastName = "Müller"; FirstName = "Marc"; EnrollmentNumber = 0; Fee = 100 }
+
+ let listOfStudents = [ marc; marcus ]
+
+ printfn "%d" (sumOfStudentFees(listOfStudents))*)
+
+ let num = new BigInteger(122231)
+
+ let myList = [1;3;4;6;7]
+
+ myList
+ |> List.map ((+) 5)
+ |> printfn "%A"
+
+ num.ToString()
+ |> printfn "%s"
+
+ printfn "%d" theAnswer
+
+ printfn "%b" (BetterThanRacket.BinaryTreeHausübung.BinaryTreeContains 56 BinaryTreeHausübung.smallTree)
+
+ 0 // return an integer exit code
diff --git a/asdf.fs b/asdf.fs
new file mode 100755
index 0000000..b72bad2
--- /dev/null
+++ b/asdf.fs
@@ -0,0 +1,6 @@
+open System
+
+[]
+let main argv =
+ printfn "Hello World!"
+ 0
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp2.1/FSharpTest.deps.json b/bin/Debug/netcoreapp2.1/FSharpTest.deps.json
new file mode 100755
index 0000000..a950163
--- /dev/null
+++ b/bin/Debug/netcoreapp2.1/FSharpTest.deps.json
@@ -0,0 +1,85 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v2.1",
+ "signature": "2a3cce40ffad1aed363051b9051c2ff156f5fe39"
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v2.1": {
+ "FSharpTest/1.0.0": {
+ "dependencies": {
+ "FSharp.Core": "4.5.2"
+ },
+ "runtime": {
+ "FSharpTest.dll": {}
+ }
+ },
+ "FSharp.Core/4.5.2": {
+ "runtime": {
+ "lib/netstandard1.6/FSharp.Core.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "2018.7.27.2"
+ }
+ },
+ "resources": {
+ "lib/netstandard1.6/cs/FSharp.Core.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netstandard1.6/de/FSharp.Core.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard1.6/en/FSharp.Core.resources.dll": {
+ "locale": "en"
+ },
+ "lib/netstandard1.6/es/FSharp.Core.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard1.6/fr/FSharp.Core.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard1.6/it/FSharp.Core.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard1.6/ja/FSharp.Core.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard1.6/ko/FSharp.Core.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard1.6/pl/FSharp.Core.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard1.6/ru/FSharp.Core.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard1.6/tr/FSharp.Core.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "FSharpTest/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "FSharp.Core/4.5.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pe3EDp9oBjQ3c3fvZAJsw7XFLHECS3zn3P7MSqsJy3sFYR6jvTgxxnCFeePR1JHiWyZ3bm+RZAjchqVYk61adA==",
+ "path": "fsharp.core/4.5.2",
+ "hashPath": "fsharp.core.4.5.2.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp2.1/FSharpTest.dll b/bin/Debug/netcoreapp2.1/FSharpTest.dll
new file mode 100755
index 0000000..75a3a2e
Binary files /dev/null and b/bin/Debug/netcoreapp2.1/FSharpTest.dll differ
diff --git a/bin/Debug/netcoreapp2.1/FSharpTest.pdb b/bin/Debug/netcoreapp2.1/FSharpTest.pdb
new file mode 100755
index 0000000..1fd5970
Binary files /dev/null and b/bin/Debug/netcoreapp2.1/FSharpTest.pdb differ
diff --git a/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.dev.json b/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.dev.json
new file mode 100755
index 0000000..ffcc3f2
--- /dev/null
+++ b/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.dev.json
@@ -0,0 +1,8 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "/home/joachim/.dotnet/store/|arch|/|tfm|",
+ "/home/joachim/.nuget/packages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.json b/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.json
new file mode 100755
index 0000000..7994936
--- /dev/null
+++ b/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp2.1",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "2.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs b/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs
new file mode 100755
index 0000000..eb2d4ff
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs
@@ -0,0 +1,17 @@
+//
+// Generated by the FSharp WriteCodeFragment class.
+//
+namespace FSharp
+
+open System
+open System.Reflection
+
+
+[]
+[]
+[]
+[]
+[]
+[]
+[]
+do()
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfoInputs.cache b/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfoInputs.cache
new file mode 100755
index 0000000..c07b670
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+19529b856e27a2307748c940b4d47f5d1899bb5a
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.assets.cache b/obj/Debug/netcoreapp2.1/FSharpTest.assets.cache
new file mode 100755
index 0000000..aec683a
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/FSharpTest.assets.cache differ
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.dll b/obj/Debug/netcoreapp2.1/FSharpTest.dll
new file mode 100755
index 0000000..75a3a2e
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/FSharpTest.dll differ
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.fsproj.FileListAbsolute.txt b/obj/Debug/netcoreapp2.1/FSharpTest.fsproj.FileListAbsolute.txt
new file mode 100755
index 0000000..6e9778a
--- /dev/null
+++ b/obj/Debug/netcoreapp2.1/FSharpTest.fsproj.FileListAbsolute.txt
@@ -0,0 +1,20 @@
+C:/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.deps.json
+C:/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.json
+C:/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.dev.json
+C:/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll
+C:/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.pdb
+C:/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.fsprojAssemblyReference.cache
+C:/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfoInputs.cache
+C:/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs
+C:/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.dll
+C:/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.pdb
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.deps.json
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.json
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.runtimeconfig.dev.json
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.pdb
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.fsprojAssemblyReference.cache
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfoInputs.cache
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.dll
+/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.pdb
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.fsprojAssemblyReference.cache b/obj/Debug/netcoreapp2.1/FSharpTest.fsprojAssemblyReference.cache
new file mode 100755
index 0000000..f38cad0
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/FSharpTest.fsprojAssemblyReference.cache differ
diff --git a/obj/Debug/netcoreapp2.1/FSharpTest.pdb b/obj/Debug/netcoreapp2.1/FSharpTest.pdb
new file mode 100755
index 0000000..1fd5970
Binary files /dev/null and b/obj/Debug/netcoreapp2.1/FSharpTest.pdb differ
diff --git a/obj/FSharpTest.fsproj.nuget.cache b/obj/FSharpTest.fsproj.nuget.cache
new file mode 100755
index 0000000..49fc5df
--- /dev/null
+++ b/obj/FSharpTest.fsproj.nuget.cache
@@ -0,0 +1,5 @@
+{
+ "version": 1,
+ "dgSpecHash": "KP6IKuZsfrTW91a0F96/3pQZOtatKecx3A20h6/JJFkuLzYMGBDyk1fYfMCcARNShwSHf2sty57EN/mDbo/Xaw==",
+ "success": true
+}
\ No newline at end of file
diff --git a/obj/FSharpTest.fsproj.nuget.g.props b/obj/FSharpTest.fsproj.nuget.g.props
new file mode 100755
index 0000000..493cc1a
--- /dev/null
+++ b/obj/FSharpTest.fsproj.nuget.g.props
@@ -0,0 +1,18 @@
+
+
+
+ True
+ NuGet
+ /media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/project.assets.json
+ /home/joachim/.nuget/packages/
+ /home/joachim/.nuget/packages/
+ PackageReference
+ 4.9.0
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/FSharpTest.fsproj.nuget.g.targets b/obj/FSharpTest.fsproj.nuget.g.targets
new file mode 100755
index 0000000..c1d3817
--- /dev/null
+++ b/obj/FSharpTest.fsproj.nuget.g.targets
@@ -0,0 +1,10 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/FSharpTest.fsproj.proj-info.targets b/obj/FSharpTest.fsproj.proj-info.targets
new file mode 100755
index 0000000..80864bc
--- /dev/null
+++ b/obj/FSharpTest.fsproj.proj-info.targets
@@ -0,0 +1,249 @@
+
+
+
+ $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_Inspect_GetProperties_OutLines Include="P0">
+ TargetPath
+ $(TargetPath)
+
+
+ <_Inspect_GetProperties_OutLines Include="P1">
+ IsCrossTargetingBuild
+ $(IsCrossTargetingBuild)
+
+
+ <_Inspect_GetProperties_OutLines Include="P2">
+ TargetFrameworks
+ $(TargetFrameworks)
+
+
+ <_Inspect_GetProperties_OutLines Include="P3">
+ OutputType
+ $(OutputType)
+
+
+ <_Inspect_GetProperties_OutLines Include="P4">
+ IsTestProject
+ $(IsTestProject)
+
+
+ <_Inspect_GetProperties_OutLines Include="P5">
+ Configuration
+ $(Configuration)
+
+
+ <_Inspect_GetProperties_OutLines Include="P6">
+ IsPackable
+ $(IsPackable)
+
+
+ <_Inspect_GetProperties_OutLines Include="P7">
+ TargetFramework
+ $(TargetFramework)
+
+
+ <_Inspect_GetProperties_OutLines Include="P8">
+ TargetFrameworkIdentifier
+ $(TargetFrameworkIdentifier)
+
+
+ <_Inspect_GetProperties_OutLines Include="P9">
+ TargetFrameworkVersion
+ $(TargetFrameworkVersion)
+
+
+ <_Inspect_GetProperties_OutLines Include="P10">
+ MSBuildAllProjects
+ $(MSBuildAllProjects)
+
+
+ <_Inspect_GetProperties_OutLines Include="P11">
+ ProjectAssetsFile
+ $(ProjectAssetsFile)
+
+
+ <_Inspect_GetProperties_OutLines Include="P12">
+ RestoreSuccess
+ $(RestoreSuccess)
+
+
+ <_Inspect_GetProperties_OutLines Include="P13">
+ Configurations
+ $(Configurations)
+
+
+ <_Inspect_GetProperties_OutLines Include="P14">
+ TargetFrameworks
+ $(TargetFrameworks)
+
+
+ <_Inspect_GetProperties_OutLines Include="P15">
+ RunArguments
+ $(RunArguments)
+
+
+ <_Inspect_GetProperties_OutLines Include="P16">
+ RunCommand
+ $(RunCommand)
+
+
+ <_Inspect_GetProperties_OutLines Include="P17">
+ IsPublishable
+ $(IsPublishable)
+
+
+
+
+
+
+
+
+ <_Inspect_GetProperties_OutLines Include="P0">
+ TargetPath
+ $(TargetPath)
+
+
+ <_Inspect_GetProperties_OutLines Include="P1">
+ IsCrossTargetingBuild
+ $(IsCrossTargetingBuild)
+
+
+ <_Inspect_GetProperties_OutLines Include="P2">
+ TargetFrameworks
+ $(TargetFrameworks)
+
+
+ <_Inspect_GetProperties_OutLines Include="P3">
+ OutputType
+ $(OutputType)
+
+
+ <_Inspect_GetProperties_OutLines Include="P4">
+ IsTestProject
+ $(IsTestProject)
+
+
+ <_Inspect_GetProperties_OutLines Include="P5">
+ Configuration
+ $(Configuration)
+
+
+ <_Inspect_GetProperties_OutLines Include="P6">
+ IsPackable
+ $(IsPackable)
+
+
+ <_Inspect_GetProperties_OutLines Include="P7">
+ TargetFramework
+ $(TargetFramework)
+
+
+ <_Inspect_GetProperties_OutLines Include="P8">
+ TargetFrameworkIdentifier
+ $(TargetFrameworkIdentifier)
+
+
+ <_Inspect_GetProperties_OutLines Include="P9">
+ TargetFrameworkVersion
+ $(TargetFrameworkVersion)
+
+
+ <_Inspect_GetProperties_OutLines Include="P10">
+ MSBuildAllProjects
+ $(MSBuildAllProjects)
+
+
+ <_Inspect_GetProperties_OutLines Include="P11">
+ ProjectAssetsFile
+ $(ProjectAssetsFile)
+
+
+ <_Inspect_GetProperties_OutLines Include="P12">
+ RestoreSuccess
+ $(RestoreSuccess)
+
+
+ <_Inspect_GetProperties_OutLines Include="P13">
+ Configurations
+ $(Configurations)
+
+
+ <_Inspect_GetProperties_OutLines Include="P14">
+ TargetFrameworks
+ $(TargetFrameworks)
+
+
+ <_Inspect_GetProperties_OutLines Include="P15">
+ RunArguments
+ $(RunArguments)
+
+
+ <_Inspect_GetProperties_OutLines Include="P16">
+ RunCommand
+ $(RunCommand)
+
+
+ <_Inspect_GetProperties_OutLines Include="P17">
+ IsPublishable
+ $(IsPublishable)
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/fsac.cache b/obj/fsac.cache
new file mode 100755
index 0000000..9c0ba22
--- /dev/null
+++ b/obj/fsac.cache
@@ -0,0 +1,2 @@
+12/7/18 1:02:34 PM
+{"Options":{"ProjectFileName":"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj","ProjectId":{"Case":"Some","Fields":["/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj"]},"SourceFiles":[],"OtherOptions":["-o:/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.dll","-g","--debug:portable","--noframework","--define:TRACE","--define:DEBUG","--define:NETCOREAPP","--define:NETCOREAPP2_1","--optimize-","--tailcalls-","--target:exe","--warn:3","--warnaserror:76","--fullpaths","--flaterrors","--highentropyva-","--targetprofile:netcore","--simpleresolution","--nocopyfsharpcore","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/OtherFile.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/BetterThanRacket.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/Program.fs","-r:/home/joachim/.nuget/packages/fsharp.core/4.5.2/lib/netstandard1.6/FSharp.Core.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.CSharp.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.VisualBasic.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/mscorlib.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/netstandard.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.AppContext.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Buffers.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Concurrent.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Immutable.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.NonGeneric.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Specialized.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.Annotations.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Configuration.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Console.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Core.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Data.Common.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Data.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Contracts.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Debug.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Process.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Tools.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Tracing.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Drawing.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Drawing.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Dynamic.Runtime.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.Calendars.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.Extensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.Brotli.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.IsolatedStorage.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Pipes.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Expressions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Parallel.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Queryable.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Memory.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Http.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.HttpListener.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Mail.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.NameResolution.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.NetworkInformation.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Ping.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Requests.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Security.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.ServicePoint.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Sockets.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebClient.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebProxy.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebSockets.Client.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebSockets.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Numerics.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Numerics.Vectors.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ObjectModel.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Extensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Metadata.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.Reader.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.ResourceManager.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.Writer.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Extensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Handles.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Loader.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Numerics.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Claims.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Principal.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.SecureString.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ServiceModel.Web.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ServiceProcess.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.Encoding.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.RegularExpressions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Overlapped.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Thread.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.ThreadPool.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Timer.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Transactions.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Transactions.Local.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ValueTuple.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Web.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Web.HttpUtility.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Windows.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.Linq.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.ReaderWriter.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.Serialization.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XDocument.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XmlDocument.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XmlSerializer.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XPath.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll","-r:/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/WindowsBase.dll"],"ReferencedProjects":[],"IsIncompleteTypeCheckEnvironment":false,"UseScriptResolutionRules":false,"LoadTime":"2018-12-07T18:48:30.9941991+01:00","UnresolvedReferences":null,"OriginalLoadReferences":[],"ExtraProjectInfo":{"Case":"Some","Fields":[{"ProjectOutputType":{"Case":"Exe"},"ProjectSdkType":{"Case":"DotnetSdk","Fields":[{"IsTestProject":false,"Configuration":"Debug","IsPackable":true,"TargetFramework":"netcoreapp2.1","TargetFrameworkIdentifier":".NETCoreApp","TargetFrameworkVersion":"v2.1","MSBuildAllProjects":["/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.nuget.g.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.SupportedTargetFrameworks.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharp.props","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.NetSdk.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.BeforeCommon.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultAssemblyInfo.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.NuGetOfflineCache.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharpTargetsShim.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.NetSdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.Targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft.Common.CurrentVersion.targets","/snap/dotnet-sdk/25/sdk/2.2.100/NuGet.targets","/snap/dotnet-sdk/25/sdk/2.2.100/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets","/snap/dotnet-sdk/25/sdk/2.2.100/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.TestPlatform.ImportAfter.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft.TestPlatform.targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.nuget.g.targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.proj-info.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.Common.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.GenerateAssemblyInfo.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ComposeStore.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.CrossGen.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ObsoleteReferences.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PreserveCompilationContext.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ConflictResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultPackageConflictOverrides.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharp.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.Overrides.NetSdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets"],"MSBuildToolsVersion":"","ProjectAssetsFile":"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/project.assets.json","RestoreSuccess":true,"Configurations":["Debug","Release"],"TargetFrameworks":[],"TargetPath":"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll","RunArguments":{"Case":"Some","Fields":["exec \"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll\""]},"RunCommand":{"Case":"Some","Fields":["dotnet"]},"IsPublishable":{"Case":"Some","Fields":[true]}}]}}]},"Stamp":null},"Files":["/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/Debug/netcoreapp2.1/FSharpTest.AssemblyInfo.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/OtherFile.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/BetterThanRacket.fs","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/Program.fs"],"OutFile":{"Case":"Some","Fields":["/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll"]},"References":["/home/joachim/.nuget/packages/fsharp.core/4.5.2/lib/netstandard1.6/FSharp.Core.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.CSharp.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.VisualBasic.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/mscorlib.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/netstandard.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.AppContext.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Buffers.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Concurrent.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Immutable.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.NonGeneric.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Collections.Specialized.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.Annotations.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Configuration.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Console.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Core.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Data.Common.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Data.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Contracts.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Debug.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Process.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Tools.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Diagnostics.Tracing.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Drawing.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Drawing.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Dynamic.Runtime.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.Calendars.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Globalization.Extensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.Brotli.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.IsolatedStorage.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.Pipes.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Expressions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Parallel.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Linq.Queryable.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Memory.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Http.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.HttpListener.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Mail.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.NameResolution.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.NetworkInformation.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Ping.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Requests.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Security.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.ServicePoint.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.Sockets.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebClient.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebProxy.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebSockets.Client.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Net.WebSockets.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Numerics.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Numerics.Vectors.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ObjectModel.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Extensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Metadata.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.Reader.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.ResourceManager.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Resources.Writer.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Extensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Handles.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Loader.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Numerics.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Claims.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.Principal.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Security.SecureString.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ServiceModel.Web.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ServiceProcess.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.Encoding.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Text.RegularExpressions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Overlapped.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Thread.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.ThreadPool.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Threading.Timer.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Transactions.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Transactions.Local.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.ValueTuple.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Web.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Web.HttpUtility.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Windows.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.Linq.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.ReaderWriter.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.Serialization.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XDocument.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XmlDocument.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XmlSerializer.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XPath.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll","/home/joachim/.nuget/packages/microsoft.netcore.app/2.1.0/ref/netcoreapp2.1/WindowsBase.dll"],"Log":{},"ExtraInfo":{"ProjectOutputType":{"Case":"Exe"},"ProjectSdkType":{"Case":"DotnetSdk","Fields":[{"IsTestProject":false,"Configuration":"Debug","IsPackable":true,"TargetFramework":"netcoreapp2.1","TargetFrameworkIdentifier":".NETCoreApp","TargetFrameworkVersion":"v2.1","MSBuildAllProjects":["/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.props","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.nuget.g.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.SupportedTargetFrameworks.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharp.props","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.NetSdk.props","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/Sdk/Sdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.BeforeCommon.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultAssemblyInfo.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultOutputPaths.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.TargetFrameworkInference.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.RuntimeIdentifierInference.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.NuGetOfflineCache.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharpTargetsShim.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.NetSdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.Targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft.Common.CurrentVersion.targets","/snap/dotnet-sdk/25/sdk/2.2.100/NuGet.targets","/snap/dotnet-sdk/25/sdk/2.2.100/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.NET.Build.Extensions.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft/Microsoft.NET.Build.Extensions/Microsoft.NET.Build.Extensions.targets","/snap/dotnet-sdk/25/sdk/2.2.100/15.0/Microsoft.Common.targets/ImportAfter/Microsoft.TestPlatform.ImportAfter.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Microsoft.TestPlatform.targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.nuget.g.targets","/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/FSharpTest.fsproj.proj-info.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.Common.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.PackageDependencyResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.DefaultItems.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DisableStandardFrameworkResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.GenerateAssemblyInfo.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ComposeStore.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.CrossGen.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ObsoleteReferences.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Publish.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.PreserveCompilationContext.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.ConflictResolution.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.DefaultPackageConflictOverrides.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FSharp.targets","/snap/dotnet-sdk/25/sdk/2.2.100/FSharp/Microsoft.FSharp.Overrides.NetSdk.targets","/snap/dotnet-sdk/25/sdk/2.2.100/Sdks/NuGet.Build.Tasks.Pack/build/NuGet.Build.Tasks.Pack.targets"],"MSBuildToolsVersion":"","ProjectAssetsFile":"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/project.assets.json","RestoreSuccess":true,"Configurations":["Debug","Release"],"TargetFrameworks":[],"TargetPath":"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll","RunArguments":{"Case":"Some","Fields":["exec \"/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/bin/Debug/netcoreapp2.1/FSharpTest.dll\""]},"RunCommand":{"Case":"Some","Fields":["dotnet"]},"IsPublishable":{"Case":"Some","Fields":[true]}}]}}}
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100755
index 0000000..16e07a3
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,841 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v2.1": {
+ "FSharp.Core/4.5.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.6/FSharp.Core.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/FSharp.Core.dll": {}
+ },
+ "resource": {
+ "lib/netstandard1.6/cs/FSharp.Core.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netstandard1.6/de/FSharp.Core.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netstandard1.6/en/FSharp.Core.resources.dll": {
+ "locale": "en"
+ },
+ "lib/netstandard1.6/es/FSharp.Core.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netstandard1.6/fr/FSharp.Core.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netstandard1.6/it/FSharp.Core.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netstandard1.6/ja/FSharp.Core.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netstandard1.6/ko/FSharp.Core.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netstandard1.6/pl/FSharp.Core.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netstandard1.6/ru/FSharp.Core.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netstandard1.6/tr/FSharp.Core.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.NETCore.App/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.DotNetHostPolicy": "2.1.0",
+ "Microsoft.NETCore.Platforms": "2.1.0",
+ "Microsoft.NETCore.Targets": "2.1.0",
+ "NETStandard.Library": "2.0.3"
+ },
+ "compile": {
+ "ref/netcoreapp2.1/Microsoft.CSharp.dll": {},
+ "ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {},
+ "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.AppContext.dll": {},
+ "ref/netcoreapp2.1/System.Buffers.dll": {},
+ "ref/netcoreapp2.1/System.Collections.Concurrent.dll": {},
+ "ref/netcoreapp2.1/System.Collections.Immutable.dll": {},
+ "ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {},
+ "ref/netcoreapp2.1/System.Collections.Specialized.dll": {},
+ "ref/netcoreapp2.1/System.Collections.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {},
+ "ref/netcoreapp2.1/System.ComponentModel.dll": {},
+ "ref/netcoreapp2.1/System.Configuration.dll": {},
+ "ref/netcoreapp2.1/System.Console.dll": {},
+ "ref/netcoreapp2.1/System.Core.dll": {},
+ "ref/netcoreapp2.1/System.Data.Common.dll": {},
+ "ref/netcoreapp2.1/System.Data.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.Process.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {},
+ "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {},
+ "ref/netcoreapp2.1/System.Drawing.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.Drawing.dll": {},
+ "ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {},
+ "ref/netcoreapp2.1/System.Globalization.Calendars.dll": {},
+ "ref/netcoreapp2.1/System.Globalization.Extensions.dll": {},
+ "ref/netcoreapp2.1/System.Globalization.dll": {},
+ "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {},
+ "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {},
+ "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {},
+ "ref/netcoreapp2.1/System.IO.Compression.dll": {},
+ "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {},
+ "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {},
+ "ref/netcoreapp2.1/System.IO.FileSystem.dll": {},
+ "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {},
+ "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {},
+ "ref/netcoreapp2.1/System.IO.Pipes.dll": {},
+ "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {},
+ "ref/netcoreapp2.1/System.IO.dll": {},
+ "ref/netcoreapp2.1/System.Linq.Expressions.dll": {},
+ "ref/netcoreapp2.1/System.Linq.Parallel.dll": {},
+ "ref/netcoreapp2.1/System.Linq.Queryable.dll": {},
+ "ref/netcoreapp2.1/System.Linq.dll": {},
+ "ref/netcoreapp2.1/System.Memory.dll": {},
+ "ref/netcoreapp2.1/System.Net.Http.dll": {},
+ "ref/netcoreapp2.1/System.Net.HttpListener.dll": {},
+ "ref/netcoreapp2.1/System.Net.Mail.dll": {},
+ "ref/netcoreapp2.1/System.Net.NameResolution.dll": {},
+ "ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {},
+ "ref/netcoreapp2.1/System.Net.Ping.dll": {},
+ "ref/netcoreapp2.1/System.Net.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.Net.Requests.dll": {},
+ "ref/netcoreapp2.1/System.Net.Security.dll": {},
+ "ref/netcoreapp2.1/System.Net.ServicePoint.dll": {},
+ "ref/netcoreapp2.1/System.Net.Sockets.dll": {},
+ "ref/netcoreapp2.1/System.Net.WebClient.dll": {},
+ "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {},
+ "ref/netcoreapp2.1/System.Net.WebProxy.dll": {},
+ "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {},
+ "ref/netcoreapp2.1/System.Net.WebSockets.dll": {},
+ "ref/netcoreapp2.1/System.Net.dll": {},
+ "ref/netcoreapp2.1/System.Numerics.Vectors.dll": {},
+ "ref/netcoreapp2.1/System.Numerics.dll": {},
+ "ref/netcoreapp2.1/System.ObjectModel.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Emit.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Extensions.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Metadata.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {},
+ "ref/netcoreapp2.1/System.Reflection.dll": {},
+ "ref/netcoreapp2.1/System.Resources.Reader.dll": {},
+ "ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {},
+ "ref/netcoreapp2.1/System.Resources.Writer.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Extensions.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Handles.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Loader.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Numerics.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.Serialization.dll": {},
+ "ref/netcoreapp2.1/System.Runtime.dll": {},
+ "ref/netcoreapp2.1/System.Security.Claims.dll": {},
+ "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {},
+ "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {},
+ "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {},
+ "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {},
+ "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {},
+ "ref/netcoreapp2.1/System.Security.Principal.dll": {},
+ "ref/netcoreapp2.1/System.Security.SecureString.dll": {},
+ "ref/netcoreapp2.1/System.Security.dll": {},
+ "ref/netcoreapp2.1/System.ServiceModel.Web.dll": {},
+ "ref/netcoreapp2.1/System.ServiceProcess.dll": {},
+ "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {},
+ "ref/netcoreapp2.1/System.Text.Encoding.dll": {},
+ "ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Overlapped.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Tasks.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Thread.dll": {},
+ "ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {},
+ "ref/netcoreapp2.1/System.Threading.Timer.dll": {},
+ "ref/netcoreapp2.1/System.Threading.dll": {},
+ "ref/netcoreapp2.1/System.Transactions.Local.dll": {},
+ "ref/netcoreapp2.1/System.Transactions.dll": {},
+ "ref/netcoreapp2.1/System.ValueTuple.dll": {},
+ "ref/netcoreapp2.1/System.Web.HttpUtility.dll": {},
+ "ref/netcoreapp2.1/System.Web.dll": {},
+ "ref/netcoreapp2.1/System.Windows.dll": {},
+ "ref/netcoreapp2.1/System.Xml.Linq.dll": {},
+ "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {},
+ "ref/netcoreapp2.1/System.Xml.Serialization.dll": {},
+ "ref/netcoreapp2.1/System.Xml.XDocument.dll": {},
+ "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {},
+ "ref/netcoreapp2.1/System.Xml.XPath.dll": {},
+ "ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {},
+ "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {},
+ "ref/netcoreapp2.1/System.Xml.dll": {},
+ "ref/netcoreapp2.1/System.dll": {},
+ "ref/netcoreapp2.1/WindowsBase.dll": {},
+ "ref/netcoreapp2.1/mscorlib.dll": {},
+ "ref/netcoreapp2.1/netstandard.dll": {}
+ },
+ "build": {
+ "build/netcoreapp2.1/Microsoft.NETCore.App.props": {},
+ "build/netcoreapp2.1/Microsoft.NETCore.App.targets": {}
+ }
+ },
+ "Microsoft.NETCore.DotNetAppHost/2.1.0": {
+ "type": "package"
+ },
+ "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.DotNetHostResolver": "2.1.0"
+ }
+ },
+ "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.DotNetAppHost": "2.1.0"
+ }
+ },
+ "Microsoft.NETCore.Platforms/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/2.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "NETStandard.Library/2.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "build/netstandard2.0/NETStandard.Library.targets": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "FSharp.Core/4.5.2": {
+ "sha512": "Pe3EDp9oBjQ3c3fvZAJsw7XFLHECS3zn3P7MSqsJy3sFYR6jvTgxxnCFeePR1JHiWyZ3bm+RZAjchqVYk61adA==",
+ "type": "package",
+ "path": "fsharp.core/4.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "fsharp.core.4.5.2.nupkg.sha512",
+ "fsharp.core.nuspec",
+ "lib/net45/FSharp.Core.dll",
+ "lib/net45/FSharp.Core.optdata",
+ "lib/net45/FSharp.Core.resources.dll",
+ "lib/net45/FSharp.Core.sigdata",
+ "lib/net45/FSharp.Core.xml",
+ "lib/net45/cs/FSharp.Core.resources.dll",
+ "lib/net45/de/FSharp.Core.resources.dll",
+ "lib/net45/en/FSharp.Core.resources.dll",
+ "lib/net45/es/FSharp.Core.resources.dll",
+ "lib/net45/fr/FSharp.Core.resources.dll",
+ "lib/net45/it/FSharp.Core.resources.dll",
+ "lib/net45/ja/FSharp.Core.resources.dll",
+ "lib/net45/ko/FSharp.Core.resources.dll",
+ "lib/net45/pl/FSharp.Core.resources.dll",
+ "lib/net45/pt-BR/FSharp.Core.resources.dll",
+ "lib/net45/ru/FSharp.Core.resources.dll",
+ "lib/net45/tr/FSharp.Core.resources.dll",
+ "lib/net45/zh-Hans/FSharp.Core.resources.dll",
+ "lib/net45/zh-Hant/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/FSharp.Core.dll",
+ "lib/netstandard1.6/FSharp.Core.optdata",
+ "lib/netstandard1.6/FSharp.Core.sigdata",
+ "lib/netstandard1.6/FSharp.Core.xml",
+ "lib/netstandard1.6/cs/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/de/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/en/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/es/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/fr/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/it/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/ja/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/ko/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/pl/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/pt-BR/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/ru/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/tr/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/zh-Hans/FSharp.Core.resources.dll",
+ "lib/netstandard1.6/zh-Hant/FSharp.Core.resources.dll"
+ ]
+ },
+ "Microsoft.NETCore.App/2.1.0": {
+ "sha512": "mVxL8khUMyl0L+MkyY0SLhZU13Z+KoUCcCTDC1MZKaegUVbAuaEzqX0VyGJ5U1lyo8fh6ryJPbsBPJww6qcKpw==",
+ "type": "package",
+ "path": "microsoft.netcore.app/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "Microsoft.NETCore.App.versions.txt",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt",
+ "build/netcoreapp2.1/Microsoft.NETCore.App.props",
+ "build/netcoreapp2.1/Microsoft.NETCore.App.targets",
+ "microsoft.netcore.app.2.1.0.nupkg.sha512",
+ "microsoft.netcore.app.nuspec",
+ "ref/netcoreapp/_._",
+ "ref/netcoreapp2.1/Microsoft.CSharp.dll",
+ "ref/netcoreapp2.1/Microsoft.CSharp.xml",
+ "ref/netcoreapp2.1/Microsoft.VisualBasic.dll",
+ "ref/netcoreapp2.1/Microsoft.VisualBasic.xml",
+ "ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll",
+ "ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml",
+ "ref/netcoreapp2.1/System.AppContext.dll",
+ "ref/netcoreapp2.1/System.Buffers.dll",
+ "ref/netcoreapp2.1/System.Buffers.xml",
+ "ref/netcoreapp2.1/System.Collections.Concurrent.dll",
+ "ref/netcoreapp2.1/System.Collections.Concurrent.xml",
+ "ref/netcoreapp2.1/System.Collections.Immutable.dll",
+ "ref/netcoreapp2.1/System.Collections.Immutable.xml",
+ "ref/netcoreapp2.1/System.Collections.NonGeneric.dll",
+ "ref/netcoreapp2.1/System.Collections.NonGeneric.xml",
+ "ref/netcoreapp2.1/System.Collections.Specialized.dll",
+ "ref/netcoreapp2.1/System.Collections.Specialized.xml",
+ "ref/netcoreapp2.1/System.Collections.dll",
+ "ref/netcoreapp2.1/System.Collections.xml",
+ "ref/netcoreapp2.1/System.ComponentModel.Annotations.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.Annotations.xml",
+ "ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml",
+ "ref/netcoreapp2.1/System.ComponentModel.Primitives.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.Primitives.xml",
+ "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml",
+ "ref/netcoreapp2.1/System.ComponentModel.dll",
+ "ref/netcoreapp2.1/System.ComponentModel.xml",
+ "ref/netcoreapp2.1/System.Configuration.dll",
+ "ref/netcoreapp2.1/System.Console.dll",
+ "ref/netcoreapp2.1/System.Console.xml",
+ "ref/netcoreapp2.1/System.Core.dll",
+ "ref/netcoreapp2.1/System.Data.Common.dll",
+ "ref/netcoreapp2.1/System.Data.Common.xml",
+ "ref/netcoreapp2.1/System.Data.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Contracts.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Contracts.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.Debug.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Debug.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.Process.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Process.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.Tools.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Tools.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml",
+ "ref/netcoreapp2.1/System.Diagnostics.Tracing.dll",
+ "ref/netcoreapp2.1/System.Diagnostics.Tracing.xml",
+ "ref/netcoreapp2.1/System.Drawing.Primitives.dll",
+ "ref/netcoreapp2.1/System.Drawing.Primitives.xml",
+ "ref/netcoreapp2.1/System.Drawing.dll",
+ "ref/netcoreapp2.1/System.Dynamic.Runtime.dll",
+ "ref/netcoreapp2.1/System.Globalization.Calendars.dll",
+ "ref/netcoreapp2.1/System.Globalization.Extensions.dll",
+ "ref/netcoreapp2.1/System.Globalization.dll",
+ "ref/netcoreapp2.1/System.IO.Compression.Brotli.dll",
+ "ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll",
+ "ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll",
+ "ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml",
+ "ref/netcoreapp2.1/System.IO.Compression.dll",
+ "ref/netcoreapp2.1/System.IO.Compression.xml",
+ "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll",
+ "ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml",
+ "ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll",
+ "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll",
+ "ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml",
+ "ref/netcoreapp2.1/System.IO.FileSystem.dll",
+ "ref/netcoreapp2.1/System.IO.FileSystem.xml",
+ "ref/netcoreapp2.1/System.IO.IsolatedStorage.dll",
+ "ref/netcoreapp2.1/System.IO.IsolatedStorage.xml",
+ "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll",
+ "ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml",
+ "ref/netcoreapp2.1/System.IO.Pipes.dll",
+ "ref/netcoreapp2.1/System.IO.Pipes.xml",
+ "ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll",
+ "ref/netcoreapp2.1/System.IO.dll",
+ "ref/netcoreapp2.1/System.Linq.Expressions.dll",
+ "ref/netcoreapp2.1/System.Linq.Expressions.xml",
+ "ref/netcoreapp2.1/System.Linq.Parallel.dll",
+ "ref/netcoreapp2.1/System.Linq.Parallel.xml",
+ "ref/netcoreapp2.1/System.Linq.Queryable.dll",
+ "ref/netcoreapp2.1/System.Linq.Queryable.xml",
+ "ref/netcoreapp2.1/System.Linq.dll",
+ "ref/netcoreapp2.1/System.Linq.xml",
+ "ref/netcoreapp2.1/System.Memory.dll",
+ "ref/netcoreapp2.1/System.Memory.xml",
+ "ref/netcoreapp2.1/System.Net.Http.dll",
+ "ref/netcoreapp2.1/System.Net.Http.xml",
+ "ref/netcoreapp2.1/System.Net.HttpListener.dll",
+ "ref/netcoreapp2.1/System.Net.HttpListener.xml",
+ "ref/netcoreapp2.1/System.Net.Mail.dll",
+ "ref/netcoreapp2.1/System.Net.Mail.xml",
+ "ref/netcoreapp2.1/System.Net.NameResolution.dll",
+ "ref/netcoreapp2.1/System.Net.NameResolution.xml",
+ "ref/netcoreapp2.1/System.Net.NetworkInformation.dll",
+ "ref/netcoreapp2.1/System.Net.NetworkInformation.xml",
+ "ref/netcoreapp2.1/System.Net.Ping.dll",
+ "ref/netcoreapp2.1/System.Net.Ping.xml",
+ "ref/netcoreapp2.1/System.Net.Primitives.dll",
+ "ref/netcoreapp2.1/System.Net.Primitives.xml",
+ "ref/netcoreapp2.1/System.Net.Requests.dll",
+ "ref/netcoreapp2.1/System.Net.Requests.xml",
+ "ref/netcoreapp2.1/System.Net.Security.dll",
+ "ref/netcoreapp2.1/System.Net.Security.xml",
+ "ref/netcoreapp2.1/System.Net.ServicePoint.dll",
+ "ref/netcoreapp2.1/System.Net.ServicePoint.xml",
+ "ref/netcoreapp2.1/System.Net.Sockets.dll",
+ "ref/netcoreapp2.1/System.Net.Sockets.xml",
+ "ref/netcoreapp2.1/System.Net.WebClient.dll",
+ "ref/netcoreapp2.1/System.Net.WebClient.xml",
+ "ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll",
+ "ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml",
+ "ref/netcoreapp2.1/System.Net.WebProxy.dll",
+ "ref/netcoreapp2.1/System.Net.WebProxy.xml",
+ "ref/netcoreapp2.1/System.Net.WebSockets.Client.dll",
+ "ref/netcoreapp2.1/System.Net.WebSockets.Client.xml",
+ "ref/netcoreapp2.1/System.Net.WebSockets.dll",
+ "ref/netcoreapp2.1/System.Net.WebSockets.xml",
+ "ref/netcoreapp2.1/System.Net.dll",
+ "ref/netcoreapp2.1/System.Numerics.Vectors.dll",
+ "ref/netcoreapp2.1/System.Numerics.Vectors.xml",
+ "ref/netcoreapp2.1/System.Numerics.dll",
+ "ref/netcoreapp2.1/System.ObjectModel.dll",
+ "ref/netcoreapp2.1/System.ObjectModel.xml",
+ "ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll",
+ "ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml",
+ "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll",
+ "ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml",
+ "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll",
+ "ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml",
+ "ref/netcoreapp2.1/System.Reflection.Emit.dll",
+ "ref/netcoreapp2.1/System.Reflection.Emit.xml",
+ "ref/netcoreapp2.1/System.Reflection.Extensions.dll",
+ "ref/netcoreapp2.1/System.Reflection.Metadata.dll",
+ "ref/netcoreapp2.1/System.Reflection.Metadata.xml",
+ "ref/netcoreapp2.1/System.Reflection.Primitives.dll",
+ "ref/netcoreapp2.1/System.Reflection.Primitives.xml",
+ "ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll",
+ "ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml",
+ "ref/netcoreapp2.1/System.Reflection.dll",
+ "ref/netcoreapp2.1/System.Resources.Reader.dll",
+ "ref/netcoreapp2.1/System.Resources.ResourceManager.dll",
+ "ref/netcoreapp2.1/System.Resources.ResourceManager.xml",
+ "ref/netcoreapp2.1/System.Resources.Writer.dll",
+ "ref/netcoreapp2.1/System.Resources.Writer.xml",
+ "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll",
+ "ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml",
+ "ref/netcoreapp2.1/System.Runtime.Extensions.dll",
+ "ref/netcoreapp2.1/System.Runtime.Extensions.xml",
+ "ref/netcoreapp2.1/System.Runtime.Handles.dll",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.dll",
+ "ref/netcoreapp2.1/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp2.1/System.Runtime.Loader.dll",
+ "ref/netcoreapp2.1/System.Runtime.Loader.xml",
+ "ref/netcoreapp2.1/System.Runtime.Numerics.dll",
+ "ref/netcoreapp2.1/System.Runtime.Numerics.xml",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml",
+ "ref/netcoreapp2.1/System.Runtime.Serialization.dll",
+ "ref/netcoreapp2.1/System.Runtime.dll",
+ "ref/netcoreapp2.1/System.Runtime.xml",
+ "ref/netcoreapp2.1/System.Security.Claims.dll",
+ "ref/netcoreapp2.1/System.Security.Claims.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml",
+ "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netcoreapp2.1/System.Security.Principal.dll",
+ "ref/netcoreapp2.1/System.Security.Principal.xml",
+ "ref/netcoreapp2.1/System.Security.SecureString.dll",
+ "ref/netcoreapp2.1/System.Security.dll",
+ "ref/netcoreapp2.1/System.ServiceModel.Web.dll",
+ "ref/netcoreapp2.1/System.ServiceProcess.dll",
+ "ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll",
+ "ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml",
+ "ref/netcoreapp2.1/System.Text.Encoding.dll",
+ "ref/netcoreapp2.1/System.Text.RegularExpressions.dll",
+ "ref/netcoreapp2.1/System.Text.RegularExpressions.xml",
+ "ref/netcoreapp2.1/System.Threading.Overlapped.dll",
+ "ref/netcoreapp2.1/System.Threading.Overlapped.xml",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll",
+ "ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml",
+ "ref/netcoreapp2.1/System.Threading.Tasks.dll",
+ "ref/netcoreapp2.1/System.Threading.Tasks.xml",
+ "ref/netcoreapp2.1/System.Threading.Thread.dll",
+ "ref/netcoreapp2.1/System.Threading.Thread.xml",
+ "ref/netcoreapp2.1/System.Threading.ThreadPool.dll",
+ "ref/netcoreapp2.1/System.Threading.ThreadPool.xml",
+ "ref/netcoreapp2.1/System.Threading.Timer.dll",
+ "ref/netcoreapp2.1/System.Threading.Timer.xml",
+ "ref/netcoreapp2.1/System.Threading.dll",
+ "ref/netcoreapp2.1/System.Threading.xml",
+ "ref/netcoreapp2.1/System.Transactions.Local.dll",
+ "ref/netcoreapp2.1/System.Transactions.Local.xml",
+ "ref/netcoreapp2.1/System.Transactions.dll",
+ "ref/netcoreapp2.1/System.ValueTuple.dll",
+ "ref/netcoreapp2.1/System.Web.HttpUtility.dll",
+ "ref/netcoreapp2.1/System.Web.HttpUtility.xml",
+ "ref/netcoreapp2.1/System.Web.dll",
+ "ref/netcoreapp2.1/System.Windows.dll",
+ "ref/netcoreapp2.1/System.Xml.Linq.dll",
+ "ref/netcoreapp2.1/System.Xml.ReaderWriter.dll",
+ "ref/netcoreapp2.1/System.Xml.ReaderWriter.xml",
+ "ref/netcoreapp2.1/System.Xml.Serialization.dll",
+ "ref/netcoreapp2.1/System.Xml.XDocument.dll",
+ "ref/netcoreapp2.1/System.Xml.XDocument.xml",
+ "ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll",
+ "ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml",
+ "ref/netcoreapp2.1/System.Xml.XPath.dll",
+ "ref/netcoreapp2.1/System.Xml.XPath.xml",
+ "ref/netcoreapp2.1/System.Xml.XmlDocument.dll",
+ "ref/netcoreapp2.1/System.Xml.XmlSerializer.dll",
+ "ref/netcoreapp2.1/System.Xml.XmlSerializer.xml",
+ "ref/netcoreapp2.1/System.Xml.dll",
+ "ref/netcoreapp2.1/System.dll",
+ "ref/netcoreapp2.1/WindowsBase.dll",
+ "ref/netcoreapp2.1/mscorlib.dll",
+ "ref/netcoreapp2.1/netstandard.dll",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.DotNetAppHost/2.1.0": {
+ "sha512": "cZiASE81rksPJsGJ04hd/uEn6guNGAoqNsrzE/DP6AaNRPCHwTe6nZvHd4uAPj3MaVRQ3U0c6cRycMaHCYLPUQ==",
+ "type": "package",
+ "path": "microsoft.netcore.dotnetapphost/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
+ "microsoft.netcore.dotnetapphost.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
+ "sha512": "JHyN4ibWkJy/2HlqHnUXBmcpzZfIhCFw7uGqWU5fyL7mzGq5E5vjCHChpFqPzRugM2QS3q31re6CAVzFBzTMqw==",
+ "type": "package",
+ "path": "microsoft.netcore.dotnethostpolicy/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
+ "microsoft.netcore.dotnethostpolicy.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.DotNetHostResolver/2.1.0": {
+ "sha512": "d+V3yHIMimz3m4MkecBtIrf1NI1oPUez5eaAXbVSWqNyFUuTeBeolYwA3yCYeKCS0zDkV0QjXEOaHd0pjujOZA==",
+ "type": "package",
+ "path": "microsoft.netcore.dotnethostresolver/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
+ "microsoft.netcore.dotnethostresolver.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/2.1.0": {
+ "sha512": "aSTPL94NloSiQVL5Len8wbjFKOnoAX/vOh3s3DF6g3c7GUUMLCDvnBhmA72M2iN2AedyA8hpr7m89kzSAKUnJQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.2.1.0.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "Microsoft.NETCore.Targets/2.1.0": {
+ "sha512": "R+z1NrmXptbA6maCVVPcJ9xrCjUZFGEW1CHQeCqOyRni6PFxANYjiEjDBAK7wQUdmdZFy3xKJYUY0qhpb+hSLQ==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/2.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.2.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "NETStandard.Library/2.0.3": {
+ "sha512": "R73gEjqCkI2Nw/IlN8QvcgPNklqQiPowp47JwvW0Bnp/RZnjN4UrJwEvWVJWRK1MsQ+HIfGe9i4aQlfK+ei9jA==",
+ "type": "package",
+ "path": "netstandard.library/2.0.3",
+ "files": [
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "build/netstandard2.0/NETStandard.Library.targets",
+ "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
+ "build/netstandard2.0/ref/System.AppContext.dll",
+ "build/netstandard2.0/ref/System.Collections.Concurrent.dll",
+ "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
+ "build/netstandard2.0/ref/System.Collections.Specialized.dll",
+ "build/netstandard2.0/ref/System.Collections.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
+ "build/netstandard2.0/ref/System.ComponentModel.dll",
+ "build/netstandard2.0/ref/System.Console.dll",
+ "build/netstandard2.0/ref/System.Core.dll",
+ "build/netstandard2.0/ref/System.Data.Common.dll",
+ "build/netstandard2.0/ref/System.Data.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Process.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
+ "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
+ "build/netstandard2.0/ref/System.Drawing.Primitives.dll",
+ "build/netstandard2.0/ref/System.Drawing.dll",
+ "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
+ "build/netstandard2.0/ref/System.Globalization.Calendars.dll",
+ "build/netstandard2.0/ref/System.Globalization.Extensions.dll",
+ "build/netstandard2.0/ref/System.Globalization.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
+ "build/netstandard2.0/ref/System.IO.Compression.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
+ "build/netstandard2.0/ref/System.IO.FileSystem.dll",
+ "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
+ "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
+ "build/netstandard2.0/ref/System.IO.Pipes.dll",
+ "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
+ "build/netstandard2.0/ref/System.IO.dll",
+ "build/netstandard2.0/ref/System.Linq.Expressions.dll",
+ "build/netstandard2.0/ref/System.Linq.Parallel.dll",
+ "build/netstandard2.0/ref/System.Linq.Queryable.dll",
+ "build/netstandard2.0/ref/System.Linq.dll",
+ "build/netstandard2.0/ref/System.Net.Http.dll",
+ "build/netstandard2.0/ref/System.Net.NameResolution.dll",
+ "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
+ "build/netstandard2.0/ref/System.Net.Ping.dll",
+ "build/netstandard2.0/ref/System.Net.Primitives.dll",
+ "build/netstandard2.0/ref/System.Net.Requests.dll",
+ "build/netstandard2.0/ref/System.Net.Security.dll",
+ "build/netstandard2.0/ref/System.Net.Sockets.dll",
+ "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
+ "build/netstandard2.0/ref/System.Net.WebSockets.dll",
+ "build/netstandard2.0/ref/System.Net.dll",
+ "build/netstandard2.0/ref/System.Numerics.dll",
+ "build/netstandard2.0/ref/System.ObjectModel.dll",
+ "build/netstandard2.0/ref/System.Reflection.Extensions.dll",
+ "build/netstandard2.0/ref/System.Reflection.Primitives.dll",
+ "build/netstandard2.0/ref/System.Reflection.dll",
+ "build/netstandard2.0/ref/System.Resources.Reader.dll",
+ "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
+ "build/netstandard2.0/ref/System.Resources.Writer.dll",
+ "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
+ "build/netstandard2.0/ref/System.Runtime.Extensions.dll",
+ "build/netstandard2.0/ref/System.Runtime.Handles.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
+ "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
+ "build/netstandard2.0/ref/System.Runtime.Numerics.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
+ "build/netstandard2.0/ref/System.Runtime.Serialization.dll",
+ "build/netstandard2.0/ref/System.Runtime.dll",
+ "build/netstandard2.0/ref/System.Security.Claims.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
+ "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
+ "build/netstandard2.0/ref/System.Security.Principal.dll",
+ "build/netstandard2.0/ref/System.Security.SecureString.dll",
+ "build/netstandard2.0/ref/System.ServiceModel.Web.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
+ "build/netstandard2.0/ref/System.Text.Encoding.dll",
+ "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
+ "build/netstandard2.0/ref/System.Threading.Overlapped.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
+ "build/netstandard2.0/ref/System.Threading.Tasks.dll",
+ "build/netstandard2.0/ref/System.Threading.Thread.dll",
+ "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
+ "build/netstandard2.0/ref/System.Threading.Timer.dll",
+ "build/netstandard2.0/ref/System.Threading.dll",
+ "build/netstandard2.0/ref/System.Transactions.dll",
+ "build/netstandard2.0/ref/System.ValueTuple.dll",
+ "build/netstandard2.0/ref/System.Web.dll",
+ "build/netstandard2.0/ref/System.Windows.dll",
+ "build/netstandard2.0/ref/System.Xml.Linq.dll",
+ "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
+ "build/netstandard2.0/ref/System.Xml.Serialization.dll",
+ "build/netstandard2.0/ref/System.Xml.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XPath.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
+ "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
+ "build/netstandard2.0/ref/System.Xml.dll",
+ "build/netstandard2.0/ref/System.dll",
+ "build/netstandard2.0/ref/mscorlib.dll",
+ "build/netstandard2.0/ref/netstandard.dll",
+ "build/netstandard2.0/ref/netstandard.xml",
+ "lib/netstandard1.0/_._",
+ "netstandard.library.2.0.3.nupkg.sha512",
+ "netstandard.library.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v2.1": [
+ "FSharp.Core >= 4.5.2",
+ "Microsoft.NETCore.App >= 2.1.0"
+ ]
+ },
+ "packageFolders": {
+ "/home/joachim/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj",
+ "projectName": "FSharpTest",
+ "projectPath": "/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/FSharpTest.fsproj",
+ "packagesPath": "/home/joachim/.nuget/packages/",
+ "outputPath": "/media/joachim/OS/Users/Joachim/Desktop/FSharpTest/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/joachim/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp2.1"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp2.1": {
+ "projectReferences": {}
+ }
+ }
+ },
+ "frameworks": {
+ "netcoreapp2.1": {
+ "dependencies": {
+ "FSharp.Core": {
+ "target": "Package",
+ "version": "[4.5.2, )"
+ },
+ "Microsoft.NETCore.App": {
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[2.1.0, )",
+ "autoReferenced": true
+ }
+ },
+ "imports": [
+ "net461"
+ ],
+ "assetTargetFallback": true,
+ "warn": true
+ }
+ }
+ }
+}
\ No newline at end of file