Skip to content

Commit

Permalink
assembly name
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRansom committed Sep 12, 2019
1 parent d48fb59 commit 05329e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fsharp/DotNetFrameworkDependencies.fs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module internal FSharp.Compiler.DotNetFrameworkDependencies
let frameworkDir = Path.GetDirectoryName(typeof<Object>.Assembly.Location)
let getDefaultFSharpCoreReference = typeof<Microsoft.FSharp.Core.Unit>.Assembly.Location
let getFSharpCompilerLocation = Path.GetDirectoryName(typeof<TypeInThisAssembly>.Assembly.Location)
let isRunningOnCoreClr = (typeof<obj>.Assembly).FullName = "System.Private.CoreLib"
let isRunningOnCoreClr = (typeof<obj>.Assembly).FullName.StartsWith("System.Private.CoreLib", StringComparison.InvariantCultureIgnoreCase)

// Use the ValueTuple that is executing with the compiler if it is from System.ValueTuple
// or the System.ValueTuple.dll that sits alongside the compiler. (Note we always ship one with the compiler)
Expand Down

0 comments on commit 05329e3

Please sign in to comment.