Skip to content

Commit

Permalink
Fix RPC and Resources: Make assembly not collectible
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimserey Lam committed Nov 28, 2015
1 parent 8658e4a commit 48c5a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SiteletFsx/FsiExec.fs
Expand Up @@ -30,7 +30,7 @@ module FsiExec =
try
let fsiArgs = [| "--noninteractive"; "--nologo"; "--gui-"; "--define:HOSTED" |]
let fsiConfig = FsiEvaluationSession.GetDefaultConfiguration()
use fsiSession = FsiEvaluationSession.Create(fsiConfig, fsiArgs, inStream, outStream, errStream, collectible = true)
use fsiSession = FsiEvaluationSession.Create(fsiConfig, fsiArgs, inStream, outStream, errStream)

// Reference essential assemblies.
fsiSession.ReferenceDlls [
Expand Down

0 comments on commit 48c5a41

Please sign in to comment.