How to safely remove global.asax from web service

Posted by Niklas on Stack Overflow See other posts from Stack Overflow or by Niklas
Published on 2010-06-10T08:32:55Z Indexed on 2010/06/10 11:03 UTC
Read the original article Hit count: 283

Filed under:
|

I have a web service asp.net project which has a global.asax with empty Application_Start and Application_End implementations.
As far as I can understand, in this case it is of no use and could be removed (correct me if I'm wrong).
Do I need to do anything other than delete global.asax and global.asax.cs (such as change something in web.config or in the project settings)?
Just asking in order to not screw up some dependencies I'm not aware of...

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about web-services