Setting ExitCode in self-hosted F# script
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开发者_StackOverflow中文版 regards, Steffen
Thanks to Alexander I now know the answer. I have to call exit myExitCode
.
精彩评论