From 62bcfc0a95d60358037d0a50361f309ef1ec7994 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Sat, 25 Jan 2014 16:36:02 -0800 Subject: [PATCH] Fixed up the func. --- src/Microsoft.AspNet.Abstractions.Owin/OwinExtensions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Abstractions.Owin/OwinExtensions.cs b/src/Microsoft.AspNet.Abstractions.Owin/OwinExtensions.cs index 885b7952d1..e203fdd00e 100644 --- a/src/Microsoft.AspNet.Abstractions.Owin/OwinExtensions.cs +++ b/src/Microsoft.AspNet.Abstractions.Owin/OwinExtensions.cs @@ -1,12 +1,13 @@ using System; using System.Threading.Tasks; +using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions.Owin; namespace Owin { public static class OwinExtensions { - public static void RunHttpContext(this IAppBuilder app, Func handler) + public static void RunHttpContext(this IAppBuilder app, Func handler) { app.Run(context => {