Skip to content

Commit

Permalink
Merge pull request #9072 from dotnet/merges/master-to-feature/witness…
Browse files Browse the repository at this point in the history
…-passing

Merge master to feature/witness-passing
  • Loading branch information
KevinRansom authored Apr 29, 2020
2 parents cceb94e + d14b5d3 commit b969432
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,6 @@ msbuild.binlog
/fcs/FSharp.Compiler.Service.netstandard/*.fsi
/.ionide/
**/.DS_Store
/tests/fsharp/regression/5531/compilation.output.test.txt
/tests/fsharp/core/fsfromfsviacs/compilation.langversion.old.output.txt
/tests/fsharp/core/fsfromfsviacs/compilation.errors.output.txt
7 changes: 5 additions & 2 deletions src/fsharp/CompileOps.fs
Original file line number Diff line number Diff line change
Expand Up @@ -2880,8 +2880,11 @@ type TcConfig private (data: TcConfigBuilder, validate: bool) =
[
// Check if we are given an explicit framework root - if so, use that
match tcConfig.clrRoot with
| Some x ->
yield tcConfig.MakePathAbsolute x
| Some x ->
let clrRoot = tcConfig.MakePathAbsolute x
yield clrRoot
let clrFacades = Path.Combine(clrRoot, "Facades")
if Directory.Exists(clrFacades) then yield clrFacades

| None ->
// "there is no really good notion of runtime directory on .NETCore"
Expand Down
14 changes: 0 additions & 14 deletions tests/fsharp/regression/5531/compilation.output.test.txt

This file was deleted.

0 comments on commit b969432

Please sign in to comment.