Last active
May 1, 2018 16:33
-
-
Save preetikr/06c20bbd4f4061ac20e04d7bd163a8e7 to your computer and use it in GitHub Desktop.
Net472_Aspnet_DependencyInjection_Step2.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Global : System.Web.HttpApplication | |
{ | |
public override void Init() | |
{ | |
HttpRuntime.WebObjectActivator = new SimpleActivator(); | |
base.Init(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment