我生成一个新进程并让它调用F#编译器,如下所示:
var exeName = args[0];
var commandLine = args[1];
using (var process = new Process())
{
process.StartInfo = new ProcessStartInfo(exeName, commandLine);
process.StartInfo.UseShellExecute = true;
process.StartInfo.LoadUserProfile = true;
process.Start();
}
我传入的参数是fsc.exe的路径和我要构建的代码的参数 结果是例外:
Unhandled Exception: System.ArgumentException: chop_extension
at Internal.Utilities.Filename.chop_extension(String s)
at Microsoft.FSharp.Compiler.Build.TcConfigBuilder.DecideNames(FSharpList`1 sourceFiles)
at Microsoft.FSharp.Compiler.Driver.main1(String[] argv)
at Microsoft.FSharp.Compiler.ErrorLogger.ErrorLoggerExtensions.ReraiseIfWatsonable(Exception exn)
at Microsoft.FSharp.Compiler.ErrorLogger.ErrorLoggerExtensions.ErrorLogger.ErrorRecovery(ErrorLogger x, Exception exn, range m)
at Microsoft.FSharp.Compiler.ErrorLogger.errorRecovery(Exception exn, range m)
at Microsoft.FSharp.Compiler.Driver.main1(String[] argv)
at Microsoft.FSharp.Compiler.Driver.main(String[] argv)
at Microsoft.FSharp.Compiler.CommandLineMain.main(String[] argv)
at Microsoft.FSharp.Compiler.ErrorLogger.ErrorLoggerExtensions.ReraiseIfWatsonable(Exception exn)
at Microsoft.FSharp.Compiler.ErrorLogger.ErrorLoggerExtensions.ErrorLogger.ErrorRecovery(ErrorLogger x, Exception exn, range m)
at Microsoft.FSharp.Compiler.ErrorLogger.errorRecovery(Exception exn, range m)
at Microsoft.FSharp.Compiler.CommandLineMain.main(String[] argv)
但是,当我从命令提示符运行相同的命令和参数时,它编译时没有错误
知道造成这种情况的原因是什么?
答案 0 :(得分:2)
在不知道您传递给编译器的参数的情况下很难给出具体的答案 - 错误可能来自一些格式错误的命令行参数。
但是,如果要从C#调用F#编译器,则不需要使用Process
类显式执行此操作。您可以使用F# PowerPack中提供的F#CodeDom提供程序 - 它负责格式化参数(以及定位F#编译器,这可能非常微妙)。
这是一个简短的例子,展示了你如何从F#中调用它(从C#那里做的就是这样):
#r "FSharp.Compiler.CodeDom.dll"
open System.CodeDom.Compiler
open Microsoft.FSharp.Compiler.CodeDom
let provider = new FSharpCodeProvider()
let parameters = CompilerParameters()
provider.CompileAssemblyFromFile(parameters, [| "C:...file.fsx" |])