I am developing a plugin as a website app. Due to the requirements, he will live along the same physical path and the same application pool as the main website on which I do not have the source code. Thus, they both have the same Web.config and some other dependencies.
I need to install a license for third-party dependencies when the application starts, but I do not have access to the code for Global.asax, because this code belongs to another company.
So, is there an alternative way to add events to Application Start without involving Global.asax or is it the only solution to inherit / extend the current Global.asax?
source share