Skip to content

Commit 0b135a6

Browse files
committed
bring in changes from b47ba47
1 parent c5eb1bc commit 0b135a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/FSharp.Test.Utilities/CompilerAssert.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ and Compilation =
259259

260260
module rec CompilerAssertHelpers =
261261

262-
let useTransparentCompiler = FSharp.Compiler.CompilerConfig.FSharpExperimentalFeaturesEnabledAutomatically
262+
let useTransparentCompiler = true
263263
let checker = FSharpChecker.Create(suggestNamesForErrors=true, useTransparentCompiler=useTransparentCompiler)
264264

265265
// Unlike C# whose entrypoint is always string[] F# can make an entrypoint with 0 args, or with an array of string[]

tests/FSharp.Test.Utilities/ProjectGeneration.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ type ProjectWorkflowBuilder
931931
?isExistingProject
932932
) =
933933

934-
let useTransparentCompiler = defaultArg useTransparentCompiler FSharp.Compiler.CompilerConfig.FSharpExperimentalFeaturesEnabledAutomatically
934+
let useTransparentCompiler = defaultArg useTransparentCompiler true
935935
let useGetSource = not useTransparentCompiler && defaultArg useGetSource false
936936
let useChangeNotifications = not useTransparentCompiler && defaultArg useChangeNotifications false
937937
let autoStart = defaultArg autoStart true

tests/service/Common.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Async with
3131
task.Result
3232

3333
// Create one global interactive checker instance
34-
let checker = FSharpChecker.Create(useTransparentCompiler=FSharp.Compiler.CompilerConfig.FSharpExperimentalFeaturesEnabledAutomatically)
34+
let checker = FSharpChecker.Create(useTransparentCompiler=true)
3535

3636
type TempFile(ext, contents: string) =
3737
let tmpFile = Path.ChangeExtension(tryCreateTemporaryFileName (), ext)

0 commit comments

Comments
 (0)