@@ -479,7 +479,7 @@ module Program =
479
479
let preprocessScriptContents
480
480
( origScript : FileInfo )
481
481
( contents : List < LineAction >)
482
- : List < CompilerInput > * List < ExtraExtension > * FileInfo =
482
+ : List < CompilerInput > * List < ExtraExtension > =
483
483
484
484
#if LEGACY_ FRAMEWORK
485
485
// from "Microsoft.Build", "16.11.0" to .../packages/Microsoft.Build.16.11.0/lib/net472/Microsoft.Build.dll
@@ -705,8 +705,7 @@ let fsi = { CommandLineArgs = System.Environment.GetCommandLineArgs() }
705
705
)
706
706
}
707
707
|> List.ofSeq,
708
- extraExtensions,
709
- autogeneratedFile
708
+ extraExtensions
710
709
711
710
#if LEGACY_ FRAMEWORK
712
711
let getSourceFiles ( flags : seq < CompilerInput >) : seq < FileInfo > =
@@ -843,17 +842,8 @@ let fsi = { CommandLineArgs = System.Environment.GetCommandLineArgs() }
843
842
844
843
let binFolder = GetBinFolderForAScript script
845
844
846
- let compilerInputs , extraExtensions , autoGenFile =
845
+ let compilerInputs , extraExtensions =
847
846
preprocessScriptContents script contents
848
-
849
- Console.WriteLine(
850
- " _________________START AUTOGEN FILE_________________"
851
- )
852
-
853
- for line in File.ReadAllLines( autoGenFile.FullName) do
854
- Console.WriteLine line
855
-
856
- Console.WriteLine( " _________________END AUTOGEN FILE_________________" )
857
847
#if ! LEGACY_ FRAMEWORK
858
848
let projectFile = generateProjectFile script contents extraExtensions
859
849
#else // dummy for to just prevent "unused" warning, meh
@@ -921,8 +911,6 @@ let fsi = { CommandLineArgs = System.Environment.GetCommandLineArgs() }
921
911
| _ -> " fsharpc"
922
912
#endif
923
913
924
- Console.WriteLine( " >>>>>>>>>>>>>>>COMPFLAGS: " + fscompilerflags)
925
-
926
914
let proc =
927
915
Process.Execute(
928
916
{
0 commit comments