How to safely remove global.asax from web service
- by Niklas
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...