Saif Khan
Saif Khan

Reputation: 18812

Asp.net release build vs debug build

How do I determine if my app was compiled as "release" instead of "debug"? I went to VS 2008 Project Properties > Build and set the configuration from Debug to Release but I noticed no change? This is an ASP.NET project.

Upvotes: 1

Views: 4052

Answers (4)

Dave Black
Dave Black

Reputation: 8049

You need to look for more than IsJITTrackingEnabled - which is completely independent of whether or not the code is compiled for optimization and JIT Optimization.

Also, the DebuggableAttribute is present if you compile in Release mode and choose DebugOutput to anything other than "none".

Please refer to my posts: How to Tell if an Assembly is Debug or Release and How to identify if the DLL is Debug or Release build (in .NET)

Upvotes: 0

Zhaph - Ben Duguid
Zhaph - Ben Duguid

Reputation: 26976

If you want to know if the dll was built in Debug mode, with the debug attributes, then your best bet is reflection.

Taken from "How to tell if an existing assembly is debug or release":

Assembly assembly = Assembly.GetAssembly(GetType());
bool debug = false;
foreach (var attribute in assembly.GetCustomAttributes(false)){
  if (attribute.GetType() ==  typeof(System.Diagnostics.DebuggableAttribute)){
    if (((System.Diagnostics.DebuggableAttribute)attribute)
        .IsJITTrackingEnabled){
      debug = true;
      break;
    }
  }
}

This will get the assembly that is calling that code (in effect itself), and then set the debug boolean to true if the assembly was compiled in debug mode, otherwise it's false.

This could easily be dropped into a console app (as in the linked example), and then you pass in the path of the dll/exe you want to check. You would load the assembly from a path like this:

Assembly assembly = 
    Assembly.LoadFile(System.IO.Path.GetFullPath(m_DllPath.Text));

Upvotes: 3

John Sheehan
John Sheehan

Reputation: 78152

HttpContext.IsDebuggingEnabled

Upvotes: 4

Lloyd
Lloyd

Reputation: 29668

For one in Web.config debug will be set to true, however you can actually set this in a release application too.

In debug however defines like DEBUG are set, so it's simple to do:

bool is_debug;

#ifdef DEBUG
is_debug = true;
#else
is_debug = false;
#endif

Upvotes: 1

Related Questions