From a6ced0c60cf315f268fb371eeb4e927767ed922e Mon Sep 17 00:00:00 2001 From: David Fowler Date: Wed, 4 Mar 2015 21:23:59 -0800 Subject: [PATCH] Removed configuration parameter from AddTypeActivator --- .../HostingServicesCollectionExtensions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Hosting/HostingServicesCollectionExtensions.cs b/src/Microsoft.AspNet.Hosting/HostingServicesCollectionExtensions.cs index 6445c1e4b1..893736db02 100644 --- a/src/Microsoft.AspNet.Hosting/HostingServicesCollectionExtensions.cs +++ b/src/Microsoft.AspNet.Hosting/HostingServicesCollectionExtensions.cs @@ -32,7 +32,8 @@ namespace Microsoft.Framework.DependencyInjection services.TryAdd(ServiceDescriptor.Instance(new ApplicationLifetime())); - services.AddTypeActivator(configuration); + services.AddTypeActivator(); + // TODO: Do we expect this to be provide by the runtime eventually? services.AddLogging(); services.TryAdd(ServiceDescriptor.Singleton());