So I know this sounds odd, but I am looking to add a Global.asax file to my console application. Reason being is that it is self hosted with OWIN and in the self-hosted life cycle, the Global.asax is called just slightly before the Startup.cs file. The end goal is to add configuration settings to this file which are applied to SignalR and the only entry point for these configurations seems to be in the Global.asax (I have tried Startup.cs).
However, once I add a Global.asax file to my application, it is never called upon. Is there anything I can do to force the Global.asax file to be called before the Startup.cs file?
EDIT: Here are the particular configuration settings I am referring to. Namely, the DisconnectTimeout