From d50923a730de560b043b77d643ac793be402eb59 Mon Sep 17 00:00:00 2001 From: Chris Ross Date: Wed, 10 Sep 2014 12:06:55 -0700 Subject: [PATCH] Handle IBuilder rename to IApplicationBuilder. --- samples/SelfHostServer/Startup.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/SelfHostServer/Startup.cs b/samples/SelfHostServer/Startup.cs index 1956abba60..93251f2a1a 100644 --- a/samples/SelfHostServer/Startup.cs +++ b/samples/SelfHostServer/Startup.cs @@ -19,7 +19,6 @@ using System; using System.Net.WebSockets; using System.Text; using System.Threading; -using Microsoft.AspNet; using Microsoft.AspNet.Builder; using Microsoft.AspNet.Http; using Microsoft.AspNet.Server.WebListener; @@ -29,7 +28,7 @@ namespace SelfHostServer { public class Startup { - public void Configure(IBuilder app) + public void Configure(IApplicationBuilder app) { var info = (ServerInformation)app.Server; info.Listener.AuthenticationManager.AuthenticationTypes = AuthenticationTypes.AllowAnonymous;