Skip to content

Commit d80578a

Browse files
committed
Removing fsx/F# interactive support
1 parent 999ebce commit d80578a

File tree

41 files changed

+8
-974
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8
-974
lines changed

src/WebJobs.Script/Description/DotNet/Compilation/DotNetCompilationServiceFactory.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Microsoft.Azure.WebJobs.Script.Description
1212
{
1313
public sealed class DotNetCompilationServiceFactory : ICompilationServiceFactory<ICompilationService<IDotNetCompilation>, IFunctionMetadataResolver>
1414
{
15-
private static readonly ImmutableArray<string> SupportedLanguages = new[] { DotNetScriptTypes.CSharp, DotNetScriptTypes.FSharp, DotNetScriptTypes.DotNetAssembly }.ToImmutableArray();
15+
private static readonly ImmutableArray<string> SupportedLanguages = new[] { DotNetScriptTypes.CSharp, DotNetScriptTypes.DotNetAssembly }.ToImmutableArray();
1616
private static OptimizationLevel? _optimizationLevel;
1717
private readonly ILoggerFactory _loggerFactory;
1818

@@ -59,8 +59,6 @@ public ICompilationService<IDotNetCompilation> CreateService(string language, IF
5959
{
6060
case DotNetScriptTypes.CSharp:
6161
return new CSharpCompilationService(metadata, OptimizationLevel);
62-
case DotNetScriptTypes.FSharp:
63-
return new FSharpCompilationService(metadata, OptimizationLevel, _loggerFactory);
6462
case DotNetScriptTypes.DotNetAssembly:
6563
return new RawAssemblyCompilationService();
6664
default:

src/WebJobs.Script/Description/DotNet/Compilation/FSharp/FSharpCompilation.cs

Lines changed: 0 additions & 104 deletions
This file was deleted.

src/WebJobs.Script/Description/DotNet/Compilation/FSharp/FSharpCompilationService.cs

Lines changed: 0 additions & 254 deletions
This file was deleted.

0 commit comments

Comments
 (0)