This repository was archived by the owner on Jun 20, 2019. It is now read-only.
This repository was archived by the owner on Jun 20, 2019. It is now read-only.
[AspNetCoreModule] consider an 'auto-start' option #29
Closed
Description
From @tuespetre on May 2, 2016 21:1
With a 'traditional' ASP.NET application, IIS could be configured to have the app pool "Always Running", which would trigger Application_Start
or a Startup
class, giving developers a chance to schedule recurring background tasks and trust that they ran as long as IIS and the app pool were running. This was great for simple, small-scale deployment scenarios.
HttpPlatformHandler was not as friendly and enabling for such scenarios. Now that HttpPlatformHandler has been forked to AspNetCoreModule, could an option be added that causes the module to start the application immediately instead of waiting for a request?
Copied from original issue: aspnet/IISIntegration#161