views:

529

answers:

5

I have a console application written in C#/.NET that I want to run from a script (nant). If an exception occurs in the console application, I would like nant to continue, but in Windows Vista there is a popup that searches for solutions and asks for debug etc.

I would like to avoid the popup with "program stopped working" when an exception happens in the console application. How can I control this from C#/.NET?

(A similar question addresses the issue for the C language, but I would like a solution for C#/.NET.)

(To clarify: I would like the exception to be passed to nant, but without the popup.)

A: 

Just catch the exception and log/ignore it.

maciejkow
Yes, that avoids the popup, but it also avoids the advantage of having other programs that call this program know that some exception occurred. See the accepted answer.
Ole Lynge
You can call Environment.Exit in catch block.
maciejkow
+6  A: 

The JIT debugger popup occurs when there's an unhandled exception. That is, an exception tunnels all the way up the stack to the root of any thread in the runtime.

To avoid this, you can handle the AppDomain.CurrentDomain.UnhandledException event and just call Environment.Exit(1) to exit gracefully.

This will handle all exception on all threads within your AppDomain. Unless you're doing anything special, your app probably only has one AppDomain, so putting this in your public static void Main method should suffice:

AppDomain.CurrentDomain.UnhandledException
    += delegate(object sender, UnhandledExceptionEventArgs args)
    {
        var exception = Exception e = (Exception) args.ExceptionObject;
        Console.WriteLine("Unhandled exception: " + exception);
        Environment.Exit(1);
    }

You should probably use the NAnt logger to write out the error in this case too (can't recall the API for this offhand though.)

You can also disable JIT debugging on the machine. I would only recommend this in certain circumstances such as for a dedicated build server.

Drew Noakes
Thanks for the quick answer. Works precisely the way I was after.
Ole Lynge
You're most welcome :)
Drew Noakes
A: 

Usually this only happens when your app doesnt handle an exception. If you wrap your whole console app in a try/catch bblock, and just pass back a fail code, then you will avoid this.

Neil N
A: 

The popup appears due to an unhandled exception. To avoid that make sure your main method captures all exceptions and turn them into some other useful piece of info you can pick up. Just ignoring the exception is not recommended.

Btw remember that exceptions are per thread, so if your application spawns threads or uses thread pool threads, you need a handler for these too.

Brian Rasmussen
A: 

Under Windows Vista you can disable this dialog for your programms.

Disable the "Problem Reports and Solutions feature". You find it under Control Panel-->Problem Reports and Solutions-->Change Settings-->Advanced Settings-->Turn off for my programs, problem reporting

Jehof
Yes, that might do if I set it up on my own machine, but I would like it to be baked into the program such that it works consistently on other machines as well. (See accepted answer.)
Ole Lynge