Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/fsharp/CompileOps.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2855,12 +2855,12 @@ type TcConfig private (data : TcConfigBuilder,validate:bool) =
[ let runtimeRoot = System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory()
let runtimeRootWithoutSlash = runtimeRoot.TrimEnd('/', '\\')
let api = runtimeRootWithoutSlash + "-api"
yield runtimeRoot // The defaut FSharp.Core is found in lib/mono/4.5
if Directory.Exists(api) then
yield api
let facades = Path.Combine(api, "Facades")
if Directory.Exists(facades) then
yield facades
yield runtimeRoot // The defaut FSharp.Core is found in lib/mono/4.5
let facades = Path.Combine(runtimeRoot, "Facades")
if Directory.Exists(facades) then
yield facades
Expand Down