I have "Run each query in its own process" option turned on (default value), but it seems that the process is being reused between query runs (LINQPad.UserQuery.exe keeps running).
Is there a way to avoid this reuse? I need a fresh process every time (due to JVM usage).
Obvious way is
Environment.Exit(0);
but it results in unpleasant "Query ended unexpectedly" message.