从 C# 执行 F# 源代码

Executing F# Source from C#

我想找到一个使用 C# 编译 F# 代码的 CompileAssemblyFromSource 的工作示例。在我目前的尝试中,我无法创建编译器,得到 "NotSupportedException" 的异常,"Compilation not supported." 的消息我的猜测是我只是做错了,因为 F# Interactive 可以工作并且必须是做类似但正确的事情。

// C#
var source = "let add x y = x + y";
var cleanProvider = new FSharp.Compiler.CodeDom.FSharpCleanCodeProvider();
var compilerParams = new System.CodeDom.Compiler.CompilerParameters();
const string outfile = "C:\temp\FSFoo.EXE";
compilerParams.OutputAssembly = outfile;
compilerParams.GenerateExecutable = true;

var compiler = cleanProvider.CreateCompiler();
var compilerResults = compiler.CompileAssemblyFromSource(compilerParams, source);
var results = cleanProvider.CompileAssemblyFromSource(compilerParams, source);

仅此代码即可编译您想要的内容,还有额外的 diagnostic/debug 代码。

using FSharp.Compiler.CodeDom;
using System.CodeDom;
var codeString = "let add x y = x + y";
var provider = new FSharp.Compiler.CodeDom.FSharpCodeProvider();
Environment.CurrentDirectory.Dump("exe is going here"); // diagnostic helper
var targetFile = "FSFoo.exe";
provider .CompileAssemblyFromSource( new System.CodeDom.Compiler.CompilerParameters(){ OutputAssembly= targetFile, GenerateExecutable=true }, new []{codeString}).Dump(); // .Dump is just for diagnostics, remove if you aren't running this in linqpad
if(!System.IO.File.Exists(targetFile)){
    throw new FileNotFoundException("Could not find compiled exe",targetFile);
}

System.IO.Directory.GetFiles(Environment.CurrentDirectory,"FSFoo.exe").Dump();// .Dump is just for diagnostics, remove if you aren't running this in linqpad

其他可能有帮助的资源:

http://www.west-wind.com/presentations/dynamiccode/dynamiccode.htm

"CompileAssemblyFromSource" in f# powerPack codeDom

http://tiku.io/questions/638972/run-f-code-on-server-even-when-f-is-not-installed-there