How to publish Asp.Net WebService with debug information? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T15:33:22Z http://stackoverflow.com/feeds/question/298417 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/298417/how-to-publish-asp-net-webservice-with-debug-information 0 How to publish Asp.Net WebService with debug information? Daniel Stanca 2008-11-18T10:48:47Z 2008-11-20T12:12:02Z <p>Starting with asp.net 2.0 the debug=true in the compilation section of the web.config file is deciding if the website/webservice will be compiled with debug information or not. But the compilation output is a lot of "gibberish" under the ASP.Net Temporary files. Only wiht publish i can get a clean output to be properly hosted under the WebServer. But there are no pdb files even if debug=true in the web.config. How can i possibly get the webservice to compile clean (as with publish) but with debug information as well? My purpose would be to publish the debug output on a remote production webserver and be able to debug into it.</p> http://stackoverflow.com/questions/298417/how-to-publish-asp-net-webservice-with-debug-information/305095#305095 1 Answer by Daniel Stanca for How to publish Asp.Net WebService with debug information? Daniel Stanca 2008-11-20T12:12:02Z 2008-11-20T12:12:02Z <p>"Web Deployment Project" solved my problem. It plugs into Visual Studio and allows setting extra deployment options, including publishing with debug information.</p>