File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ and Compilation =
259259
260260module 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[]
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
3636type TempFile ( ext , contents : string ) =
3737 let tmpFile = Path.ChangeExtension( tryCreateTemporaryFileName (), ext)
You can’t perform that action at this time.
0 commit comments