Managed Debugging: Recommended Property Settings

This topic applies to:

Edition

Visual Basic

C#

C++

Web Developer

Express

Topic applies Topic applies Topic does not apply Topic does not apply

Standard

Topic applies

Topic applies

Topic does not apply

Topic does not apply

Pro and Team

Topic applies

Topic applies

Topic does not apply

Topic does not apply

Table legend:

Topic applies

Applies

Topic does not apply

Does not apply

Topic applies but command hidden by default

Command or commands hidden by default.

Certain properties should be set the same way for all managed debugging scenarios.

The following tables display recommended property settings.

Settings not listed here may vary among the different managed project types. For example, Start Action will be set differently in a Windows Forms project than in an ASP.NET project.

Configuration Properties on the Build (C#) or Compile (Visual Basic) tab

Property Name

Setting

Define DEBUG constant

C#: Set the check box to checked. This enables your application to use the Debug class.

Define TRACE constant

C#: Set the check box to checked. This enables your application to use the Trace class.

Optimize code

C# and Visual Basic: Set to false. Optimized code is harder to debug, because the generated instructions do not correspond directly to your source code. If you find your program has a bug that appears only in optimized code, you can turn this setting on, but remember that code shown in the Disassembly window is generated from optimized source that might not match what you see in the Code Editor. To debug optimized code, you must turn off Just My Code. (See How to: Step Into Just My Code).

For more information, see Project Settings for C# Debug Configurations or Project Settings for a Visual Basic Debug Configuration.

Output path

For C#, set to bin\Debug\. For Visual Basic, set to bin\.

Advanced Compile Options

Click Advanced to set the advanced properties that are described in the following table.

Advanced Compiler Settings dialog box

Property Name

Setting

Enable optimizations

Set to false for the reasons specified in the Optimize code option in the preceding table.

Generate debugging information

Select this check box to cause the /DEBUG flag to be set when compiling, which will generate information needed to facilitate debugging.

Define DEBUG constant

Select this check box to define the DEBUG constant, which enables your application to use the Debug class.

Define TRACE constant

Select this check box to define the TRACE constant, which enables your application to use the Trace class.

See Also

Other Resources

Debugging Managed Code

Debugging Preparation: C# and Visual Basic Project Types