How to publish Asp.Net WebService with debug info?

Since asp.net 2.0 debug = true in the compilation section of the web.config file decides whether the site / web service will compile with debug information or not. But the compilation output is a lot of gibberish in ASP.Net Temporary files. For post only, I can get clean output that will be posted correctly under the WebServer. But there are no pdb files even if debug = true in web.config. How can I get the webservice to compile clean (like post) but with debug information? My goal would be to publish the debug output to a remote web server for production and be able to debug it.

0


source to share


1 answer


The "Web Deployment Project" solved my problem. It connects to Visual Studio and allows you to set additional deployment options, including publishing with debug information.



+1


source







All Articles