Debugging

0 comments

Set debug with PDB-Only mode in the web.config:

 

    <system.codedom>
        <compilers>
            <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
                       compilerOptions="/debug:pdbonly"/>
            <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
                       compilerOptions="/debug:pdbonly"/>
        </compilers> 

</system.codedom> 


Comments


Leave a Comment