I am hosting the FSI.exe in my build tool ("FAKE - F# Make") and I need to set the ExitCode for FSI.exe from inside my fsx-script. Is this possible?

At the moment I am raising errors in the F# build script and this sets the exit code, but it also displays nasty exceptions and stackstraces in the build log.

Thanks in advance and best regards, Steffen

link|improve this question

Environment.ExitCode <- 1 inside a script seems to have no effect. – forki23 Mar 5 '11 at 15:35
feedback

1 Answer

up vote 3 down vote accepted

Thanks to Alexander I now know the answer. I have to call exit myExitCode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.