vnarod Posted June 7, 2002 Posted June 7, 2002 What is the difference between Debug and Release configurations? Quote
*Gurus* divil Posted June 7, 2002 *Gurus* Posted June 7, 2002 When you compile with debug symbols turned on it inserts them in your compiled assembly, so that a debugger can tell you information about your program when it crashes, what line the error occured on, a stack trace etc. Release mode compiles the assembly without including any of this information. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
vnarod Posted June 7, 2002 Author Posted June 7, 2002 Is there any reason then to use Release configuration? Quote
reboot Posted June 7, 2002 Posted June 7, 2002 Not really. Unless of course you like smaller, faster compiled code. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.