From 8f316654788bd5fab8ccd944e417c5d71dead5aa Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Fri, 20 Jun 2014 14:14:52 -0700 Subject: [PATCH] Make IServerFactory AssemblyNeutral. --- src/Microsoft.AspNet.Hosting/Server/IServerFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Hosting/Server/IServerFactory.cs b/src/Microsoft.AspNet.Hosting/Server/IServerFactory.cs index 21d3f06fbe..0b75dbe5e9 100644 --- a/src/Microsoft.AspNet.Hosting/Server/IServerFactory.cs +++ b/src/Microsoft.AspNet.Hosting/Server/IServerFactory.cs @@ -18,12 +18,12 @@ using System; using System.Threading.Tasks; using Microsoft.AspNet.Builder; -using Microsoft.AspNet.Http; using Microsoft.Framework.ConfigurationModel; +using Microsoft.Framework.Runtime; namespace Microsoft.AspNet.Hosting.Server { - // TODO: [AssemblyNeutral] + [AssemblyNeutral] public interface IServerFactory { IServerInformation Initialize(IConfiguration configuration);