Compiler Settings for ASP.NET

Applies to AQTime 8.81, last modified on January 18, 2022

This topic explains how to prepare ASP.NET applications before profiling them in AQTime.

To add debug information to your ASP.NET application, follow these steps:

  1. Create the Web.config file in your project folder (if it is not there yet) and set the debug attribute of the compilation element to true in the file:

    XML

    ...
    <compilation debug="true" />
    ...
  2. Compile your ASP.NET application with debug information. The actions you should perform in this step depend on the project type of your ASP.NET application and on the tool you are using to create and compile your application.

When your application is ready for final delivery, remember to compile it without debug information to reduce the overall size of the application.

See Also

How AQTime Profilers Use Metadata and Debug Information
Profiling ASP.NET Applications

Highlight search results