Reverting change to include ILogger<> from manifest
This seems to cause MVC to fail.
This commit is contained in:
parent
2af7332667
commit
c632c8a6a4
|
|
@ -49,7 +49,6 @@ namespace Microsoft.AspNet.Hosting
|
|||
typeof(ITypeActivator),
|
||||
typeof(IHostingEnvironment),
|
||||
typeof(ILoggerFactory),
|
||||
typeof(ILogger<>),
|
||||
typeof(IHttpContextAccessor),
|
||||
typeof(IApplicationLifetime)
|
||||
}.Concat(manifest.Services).Distinct();
|
||||
|
|
|
|||
|
|
@ -82,7 +82,6 @@ namespace Microsoft.AspNet.Hosting.Tests
|
|||
[InlineData(typeof(ITypeActivator))]
|
||||
[InlineData(typeof(IHostingEnvironment))]
|
||||
[InlineData(typeof(ILoggerFactory))]
|
||||
[InlineData(typeof(ILogger<IHostingEngine>))]
|
||||
[InlineData(typeof(IHttpContextAccessor))]
|
||||
[InlineData(typeof(IApplicationLifetime))]
|
||||
public void UseRequestServicesHostingImportedServicesAreDefined(Type service)
|
||||
|
|
|
|||
Loading…
Reference in New Issue