Skip to content

Instantly share code, notes, and snippets.

@maxaf
Created March 7, 2014 20:35
Show Gist options
  • Save maxaf/9419514 to your computer and use it in GitHub Desktop.
Save maxaf/9419514 to your computer and use it in GitHub Desktop.
max@sordid ~/work/FS2005 % ls -l
total 23952
-rwxr-xr-x+ 1 max staff 12258304 Mar 7 15:31 FSharp.Compiler.Service.dll
-rw-r--r--+ 1 max staff 157 Mar 7 15:31 test.fsx
max@sordid ~/work/FS2005 % cat test.fsx
#r "FSharp.Compiler.Service.dll"
open Microsoft.FSharp.Compiler.SimpleSourceCodeServices
let scs = SimpleSourceCodeServices()
printfn "Hello, world! %A" scs
max@sordid ~/work/FS2005 % fsharpc --standalone -I:. -o test.exe test.fsx
F# Compiler for F# 3.0 (Open Source Edition)
Freely distributed under the Apache 2.0 Open Source License
error FS2005: The code in assembly 'FSharp.Compiler.Service' makes uses of quotation literals. Static linking may not include components that make use of quotation literals.
max@sordid ~/work/FS2005 %
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment