We have an asp.net web application which can take in extra features by hot loading DLL’s. One of the issues with this is that these DLL’s may be updated while the application is running. Is there a way to issue a request to the app to restart itself, thus unloading the DLL’s from the app domain and picking up the new DLL’s?
Share
I guess what you need is
It Terminates the current application. The application restarts the next time a request is received for it.
MSDN link