We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a54abbf commit 9f3f779Copy full SHA for 9f3f779
src/fsharp/CompileOps.fs
@@ -1640,7 +1640,7 @@ let GetFSharpCoreReferenceUsedByCompiler(useSimpleResolution) =
1640
let fscCoreLocation =
1641
let fscLocation = typeof<TypeInThisAssembly>.Assembly.Location
1642
Path.Combine(Path.GetDirectoryName(fscLocation), fsCoreName + ".dll")
1643
- if File.Exists(fscCoreLocation) then fsCoreName + ".dll"
+ if File.Exists(fscCoreLocation) then fscCoreLocation
1644
else failwithf "Internal error: Could not find %s" fsCoreName
1645
#else
1646
// TODO: Remove this when we do out of GAC for DEV 15 because above code will work everywhere.
0 commit comments