I have an mvc application hosted on IIS. This app requires to register some jobs when the app is starting. I implement this logic on the Application_Start event and it's working correctly.
If the IIS restarts, I have to re-register all the jobs. I tried to warm up the app with this solution but the Application_Start is not fired.
Is it possible to trigger this event after the restart? or maybe there are other events that i can handle after the restart?