vote up 2 vote down star
1

Is there a way to detect if your program was loaded through Visual Studio vs. whether it was started as a standalone executable?

Our software has a bug reporting feature to handle unhandled exceptions -- we need to be able to distribute debug builds to our beta testers, but we don't want the bug report to go off when we are in the middle of development, because the Exceptions are a lot more useful if VS catches them with a full stack trace, etc.

Right now, I'm disabling the bug report if Application.ExecutablePath includes bin\Debug or bin\Release, but I figure there is probably a more robust way of detecting whether the program was loaded through VS.

Obviously, we could set up a different build with some preprocessor macros, but for the sake of the question, assume that isn't a possibility -- I don't mind adding code, but I'm trying to make the fewest modifications to the build process, which is why command-line options are kind of a last resort as well.

If it matters, I'm using VS2003/.NET 1.1.

flag

4 Answers

vote up 11 vote down check

If you're doing this to determine if it is in any debugger (clarified by @JaredPar), you can use Debugger.IsAttached in the exception handler.

try
{
    // ...
}
catch(Exception ex)
{
    if (!Debugger.IsAttached)
    {
        ExceptionHandler.Frob(ex);
    }
    else
    {
        throw;
    }
}

Alternatively:

public static void Frob(Exception ex)
{
    if (Debugger.IsAttached)
    {
        Debugger.Break();
    }
}
link|flag
+1: Very simple, clean option. – Reed Copsey Aug 27 at 18:50
That's precisely one of those "I don't know what I'm looking for, but I'll know it when I see it" kind of answers - perfect, thanks! – Mark Rushakoff Aug 27 at 19:00
System.Diagnostics has lots of juicy goodness. – sixlettervariables Aug 27 at 19:02
1  
One thing to be wary of is this will tell if any debugger is attached, not if Visual Studio is attached. Attaching WinDbg would cause the same behavior. – JaredPar Aug 27 at 19:46
Our "beta testers" will never have a debugger attached; but if they did, they'd pretty much be asking for the bug reporting feature to be disabled anyway :P – Mark Rushakoff Aug 28 at 2:23
vote up 0 vote down

Instead of tracking by process tree, I would add a configuration flag that enables the reporting feature. The flag can always default to "true" unless you are in your DEV environment then you set it to "false".

link|flag
vote up 1 vote down

Have you considered command line arguments? Run the program from Visual Studio with a --no-exception-handling flag (or whatever sounds appropriate), and don't handle exceptions if that argument is passed in. When you start the program elsewhere, without this argument, it'll behave normally.

link|flag
vote up 0 vote down

I don't do .net development, but in java I have done this by passing a flag into the startup options of the application. So you could pass a debug flag into the app from the IDE, and then check for that, when the app is run as an executable the flag would not be present. I would be surprised if .net didn't have something similar.

link|flag
I'm trying to avoid modifying the build/run process as much as possible, but yes, you can read command line options in .NET too :) – Mark Rushakoff Aug 27 at 18:49

Your Answer

Get an OpenID
or

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