Moving the IServiceCollection extension into Microsoft.Framework.DependencyInjection namespace

Fixes: https://github.com/aspnet/Routing/issues/160
This commit is contained in:
Praburaj 2015-03-12 12:41:11 -07:00
parent 2bd73523f6
commit 61e4f55075
2 changed files with 4 additions and 3 deletions

View File

@ -6,6 +6,7 @@ using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Routing; using Microsoft.AspNet.Routing;
using Microsoft.AspNet.Routing.Constraints; using Microsoft.AspNet.Routing.Constraints;
using Microsoft.Framework.DependencyInjection;
namespace RoutingSample.Web namespace RoutingSample.Web
{ {

View File

@ -1,9 +1,9 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Framework.DependencyInjection; using Microsoft.AspNet.Routing;
namespace Microsoft.AspNet.Routing namespace Microsoft.Framework.DependencyInjection
{ {
public static class RoutingServices public static class RoutingServices
{ {
@ -13,4 +13,4 @@ namespace Microsoft.AspNet.Routing
return services; return services;
} }
} }
} }