diff --git a/src/dotnet/commands/dotnet-compile-fsc/Program.cs b/src/dotnet/commands/dotnet-compile-fsc/Program.cs index 0dd36f998..271ec0987 100644 --- a/src/dotnet/commands/dotnet-compile-fsc/Program.cs +++ b/src/dotnet/commands/dotnet-compile-fsc/Program.cs @@ -175,6 +175,12 @@ namespace Microsoft.DotNet.Tools.Compiler.Fsc { } + // Additional arguments are added verbatim + if (options.AdditionalArguments != null) + { + commonArgs.AddRange(options.AdditionalArguments); + } + if (options.LanguageVersion != null) { }