Renaming Microsoft.Framework.* -> Microsoft.Extensions.*

This commit is contained in:
Pranav K 2015-10-03 15:44:49 -07:00
parent 786b1a466b
commit b36d5663b2
10 changed files with 31 additions and 31 deletions

View File

@ -1,11 +1,11 @@
// Copyright (c) .NET Foundation. All rights reserved. // Copyright (c) .NET Foundation. 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 System; using System;
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.Framework.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace SessionSample namespace SessionSample
{ {

View File

@ -6,10 +6,10 @@
"Microsoft.AspNet.Server.IIS": "1.0.0-*", "Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*", "Microsoft.AspNet.Server.WebListener": "1.0.0-*",
"Microsoft.AspNet.Session": "1.0.0-*", "Microsoft.AspNet.Session": "1.0.0-*",
"Microsoft.Framework.Caching.Memory": "1.0.0-*", "Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.Framework.Caching.Redis": "1.0.0-*", "Microsoft.Extensions.Caching.Redis": "1.0.0-*",
"Microsoft.Framework.Caching.SqlServer": "1.0.0-*", "Microsoft.Extensions.Caching.SqlServer": "1.0.0-*",
"Microsoft.Framework.Logging.Console": "1.0.0-*" "Microsoft.Extensions.Logging.Console": "1.0.0-*"
}, },
"exclude": "wwwroot/**/*.*", "exclude": "wwwroot/**/*.*",
"frameworks": { "frameworks": {

View File

@ -8,9 +8,9 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Features;
using Microsoft.Framework.Caching.Distributed; using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.AspNet.Session namespace Microsoft.AspNet.Session
{ {

View File

@ -3,9 +3,9 @@
using System; using System;
using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Features;
using Microsoft.Framework.Caching.Distributed; using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
namespace Microsoft.AspNet.Session namespace Microsoft.AspNet.Session
{ {

View File

@ -7,9 +7,9 @@ using System.Threading.Tasks;
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Features;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
using Microsoft.Framework.OptionsModel; using Microsoft.Extensions.OptionsModel;
namespace Microsoft.AspNet.Session namespace Microsoft.AspNet.Session
{ {

View File

@ -2,7 +2,7 @@
// 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.AspNet.Session; using Microsoft.AspNet.Session;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
namespace Microsoft.AspNet.Builder namespace Microsoft.AspNet.Builder
{ {

View File

@ -3,9 +3,9 @@
using System; using System;
using Microsoft.AspNet.Session; using Microsoft.AspNet.Session;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
namespace Microsoft.Framework.DependencyInjection namespace Microsoft.Extensions.DependencyInjection
{ {
/// <summary> /// <summary>
/// Extension methods for adding session services to the DI container. /// Extension methods for adding session services to the DI container.

View File

@ -7,10 +7,10 @@
}, },
"dependencies": { "dependencies": {
"Microsoft.AspNet.Http.Abstractions": "1.0.0-*", "Microsoft.AspNet.Http.Abstractions": "1.0.0-*",
"Microsoft.Framework.Caching.Abstractions": "1.0.0-*", "Microsoft.Extensions.Caching.Abstractions": "1.0.0-*",
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*", "Microsoft.Extensions.Logging.Abstractions": "1.0.0-*",
"Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, "Microsoft.Extensions.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" },
"Microsoft.Framework.OptionsModel": "1.0.0-*" "Microsoft.Extensions.OptionsModel": "1.0.0-*"
}, },
"compilationOptions": { "compilationOptions": {
"allowUnsafe": true "allowUnsafe": true

View File

@ -11,12 +11,12 @@ using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http; using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Features; using Microsoft.AspNet.Http.Features;
using Microsoft.AspNet.TestHost; using Microsoft.AspNet.TestHost;
using Microsoft.Framework.Caching.Distributed; using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Framework.Caching.Memory; using Microsoft.Extensions.Caching.Memory;
using Microsoft.Framework.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Framework.Internal; using Microsoft.Extensions.Internal;
using Microsoft.Framework.Logging; using Microsoft.Extensions.Logging;
using Microsoft.Framework.Logging.Testing; using Microsoft.Extensions.Logging.Testing;
using Microsoft.Net.Http.Headers; using Microsoft.Net.Http.Headers;
using Xunit; using Xunit;

View File

@ -2,8 +2,8 @@
"dependencies": { "dependencies": {
"Microsoft.AspNet.Session": "1.0.0-*", "Microsoft.AspNet.Session": "1.0.0-*",
"Microsoft.AspNet.TestHost": "1.0.0-*", "Microsoft.AspNet.TestHost": "1.0.0-*",
"Microsoft.Framework.Caching.Memory": "1.0.0-*", "Microsoft.Extensions.Caching.Memory": "1.0.0-*",
"Microsoft.Framework.Logging.Testing": "1.0.0-*", "Microsoft.Extensions.Logging.Testing": "1.0.0-*",
"xunit.runner.aspnet": "2.0.0-aspnet-*" "xunit.runner.aspnet": "2.0.0-aspnet-*"
}, },
"commands": { "commands": {