gpt4 book ai didi

dynamic - f# powerPack codeDom 中的 "CompileAssemblyFromSource"

转载 作者:行者123 更新时间:2023-12-01 14:55:13 25 4
gpt4 key购买 nike

我正在尝试使用基本程序来动态编译和运行 f# 代码。我正在尝试运行以下代码:

open System 
open System.CodeDom.Compiler
open Microsoft.FSharp.Compiler.CodeDom

// Our (very simple) code string consisting of just one function: unit -> string
let codeString =
"module Synthetic.Code\n let syntheticFunction() = \"I've been compiled on the fly!\""
// Assembly path to keep compiled code
let synthAssemblyPath = "synthetic.dll"

let CompileFSharpCode(codeString, synthAssemblyPath) =
use provider = new FSharpCodeProvider()
let options = CompilerParameters([||], synthAssemblyPath)
let result = provider.CompileAssemblyFromSource( options, [|codeString|] )
// If we missed anything, let compiler show us what's the problem
if result.Errors.Count <> 0 then
for i = 0 to result.Errors.Count - 1 do
printfn "%A" (result.Errors.Item(i).ErrorText)
result.Errors.Count = 0

if CompileFSharpCode(codeString, synthAssemblyPath) then
let synthAssembly = Reflection.Assembly.LoadFrom(synthAssemblyPath)
let synthMethod = synthAssembly.GetType("Synthetic.Code").GetMethod("syntheticFunction")
printfn "Success: %A" (synthMethod.Invoke(null, null))
else
failwith "Compilation failed"

来自本站: http://infsharpmajor.wordpress.com/2012/04/01/how-to-dynamically-synthesize-executable-f-code-from-text/

我遇到的问题是以下行:
let result = provider.CompileAssemblyFromSource( options, [|codeString|] ) 

我在哪里得到异常: The System cannot find the file specified.
我已经包括了所需的引用资料 Fsharp.compiler.codeDom.dllFsharp.compiler.dll我不确定还有什么问题。我目前正在尝试获取 CodeDom 的 dll 源代码关闭 codeplex 并逐步完成它,但是如果有人能够看到我忽略的一些问题,它会为我省去很多麻烦。

感谢您的时间,
-阿尔珀

最佳答案

在 F# PowerPack 的 CodeDOM 实现之下,使用 F# 编译器生成代码,这意味着它需要一种方法来查找编译器和相关元数据。

首先,您可能需要复制 FSharp.Core.sigdata文件到您的 bin 文件夹(元数据)。您可能还需要将 F# 编译器 (fsc.exe) 添加到您的路径中,或者将其复制到您的 bin 文件夹中(fsc.exe 位于 C:\Program Files (x86)\Microsoft SDKs\F#\3.0\Framework\v4.0)。至少这在我安装了 Visual Studio 2012 的 Windows 8 机器上对我有用。

关于dynamic - f# powerPack codeDom 中的 "CompileAssemblyFromSource",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18137459/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com