这是场景:
- 打开 Visual Studio。这是在 VS2010 Pro 中完成的。
- 在 Visual Studio 中打开 F# Interactive
- 使用 fsx 文件打开项目
注意:项目和 fsx 文件在E:\<directories>\fsharp-tapl\arith
从 fsx 文件向 F# Interactive 发送命令
> System.Environment.CurrentDirectory;; val it : string = "C:\Users\Eric\AppData\Local\Temp"
我没想到会有一个 Temp 目录,但它是有道理的。
> #r @"arith.exe" Examples.fsx(7,1): error FS0082: Could not resolve this reference. Could not locate the assembly "arith.exe". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. (Code=MSB3245) Examples.fsx(7,1): error FS0084: Assembly reference 'arith.exe' was not found or is invalid
#r 命令错误表明 F# Interactive 当前不知道 arith.exe 的位置。
> #I @"bin\Debug" --> Added 'E:\<directories>\fsharp-tapl\arith\bin\Debug' to library include path
所以我们告诉 F# Interactive arith.exe 的位置。请注意,路径不是绝对路径,而是项目的子路径。我没有告诉 F# Interactive arith 项目的位置
E:\<directories>\fsharp-tapl\arith
> #r @"arith.exe" --> Referenced 'E:\<directories>\fsharp-tapl\arith\bin\Debug\arith.exe'
并且 F# Interactive 正确发现 arith.exe 报告了正确的绝对路径。
> open Main > eval "true;" ;; true val it : unit = ()
这确认 arith.exe 已正确找到、加载并正常工作。
那么 F# Interactive #I 命令是如何知道当前目录没有帮助的项目路径的呢?
我真正追求的是从 F# Interactive 中如何获得项目的路径,E:\<directories>\fsharp-tapl\arith
.
编辑
> printfn __SOURCE_DIRECTORY__;;
E:\<directories>\fsharp-tapl\arith
val it : unit = ()