0

我生成了一个新进程并让它像这样调用 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)

但是,当我从命令提示符运行相同的命令和参数时,它编译时没有错误

知道是什么原因造成的吗?

4

1 回答 1

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" |])
于 2012-05-15T16:17:12.540 回答