vote up 6 vote down star
3

For my production sites I usually change the "debug" flag in the Web.Config to "false". But I always publish my sites with the Configuration Manager set to "Debug". Should I change this setting too?

flag

4 Answers

vote up 3 vote down check

Yes, you should - though if it makes a difference is dependent on how your website is coded. Only precompiled sites (Web Application Projects) or Class Libraries in the same solution will care. ASP.NET sites (Website Projects) will be compiled on the server, and will check web.config for it's debug setting.

link|flag
vote up 2 vote down

Yes, absolutely. Setting it to release will compile code without debugging symbols and with the right conditional compilation (i.e. #if DEBUG).

link|flag
vote up 2 vote down

Yes Release will compile a smaller DLL

link|flag
vote up 5 vote down

Yes, as suggested in MSDN :

Enabling debug mode will greatly affect the performance of your ASP.NET application. Remember to disable debug mode before you deploy a release application or conduct performance measurements.

link|flag
Yes - but note that that refers to setting debug="false" in web.config - not the VS Solution. – Mark Brackett Apr 7 at 18:26

Your Answer

Get an OpenID
or

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