Skip to content

Commit 7259205

Browse files
committed
Use Owin namespace when extend IAppBuilder
1 parent 972fffb commit 7259205

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/Ninject.Web.Common.Owin/OwinAppBuilderExtensions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,14 @@
1919
// </copyright>
2020
// -------------------------------------------------------------------------------------------------
2121

22-
namespace Ninject.Web.Common.Owin
22+
namespace Owin
2323
{
2424
using System;
2525
using System.Collections.Generic;
2626
using System.Threading.Tasks;
2727

28-
using global::Owin;
28+
using Ninject;
29+
using Ninject.Web.Common.Owin;
2930

3031
/// <summary>
3132
/// The OWIN app builder extensions.

src/Ninject.Web.Common.WebHost/App_Start/NinjectWebCommon.cs.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
private static readonly Bootstrapper bootstrapper = new Bootstrapper();
1818

1919
/// <summary>
20-
/// Starts the application
20+
/// Starts the application.
2121
/// </summary>
2222
public static void Start()
2323
{

0 commit comments

Comments
 (0)