From ac05fde9bdd4719e545ded011ddece59cae326bd Mon Sep 17 00:00:00 2001 From: Enrico Sada Date: Sat, 26 Mar 2016 00:27:43 +0100 Subject: [PATCH] fsc, always pass --nocopyfsharpcore to disable copy of FSharp.Core to output directory --- src/dotnet/commands/dotnet-compile-fsc/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dotnet/commands/dotnet-compile-fsc/Program.cs b/src/dotnet/commands/dotnet-compile-fsc/Program.cs index 9ff234476..6eb454330 100644 --- a/src/dotnet/commands/dotnet-compile-fsc/Program.cs +++ b/src/dotnet/commands/dotnet-compile-fsc/Program.cs @@ -129,6 +129,7 @@ namespace Microsoft.DotNet.Tools.Compiler.Fsc allArgs.Add("--noframework"); allArgs.Add("--nologo"); allArgs.Add("--simpleresolution"); + allArgs.Add("--nocopyfsharpcore"); // project.json compilationOptions if (commonOptions.Defines != null)