Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit 24bc91b

Browse files
committed
Renaming Microsoft.Framework.* -> Microsoft.Extensions.*
1 parent 1033faa commit 24bc91b

18 files changed

+26
-26
lines changed

samples/StaticFileSample/Startup.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using Microsoft.AspNet.Builder;
22
using Microsoft.AspNet.StaticFiles;
3-
using Microsoft.Framework.DependencyInjection;
4-
using Microsoft.Framework.Logging;
5-
using Microsoft.Framework.Logging.Console;
3+
using Microsoft.Extensions.DependencyInjection;
4+
using Microsoft.Extensions.Logging;
5+
using Microsoft.Extensions.Logging.Console;
66

77
namespace StaticFilesSample
88
{

samples/StaticFileSample/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
88
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
99
"Microsoft.AspNet.StaticFiles": "1.0.0-*",
10-
"Microsoft.Framework.Logging.Console": "1.0.0-*"
10+
"Microsoft.Extensions.Logging.Console": "1.0.0-*"
1111
},
1212
"frameworks": {
1313
"dnx451": {},

src/Microsoft.AspNet.StaticFiles/DefaultFilesExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.AspNet.Http;
55
using Microsoft.AspNet.StaticFiles;
6-
using Microsoft.Framework.Internal;
6+
using Microsoft.Extensions.Internal;
77

88
namespace Microsoft.AspNet.Builder
99
{

src/Microsoft.AspNet.StaticFiles/DefaultFilesMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Microsoft.AspNet.Builder;
66
using Microsoft.AspNet.Hosting;
77
using Microsoft.AspNet.Http;
8-
using Microsoft.Framework.Internal;
8+
using Microsoft.Extensions.Internal;
99
using Microsoft.Net.Http.Headers;
1010

1111
namespace Microsoft.AspNet.StaticFiles

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
using Microsoft.AspNet.Http;
55
using Microsoft.AspNet.StaticFiles;
6-
using Microsoft.Framework.Internal;
6+
using Microsoft.Extensions.Internal;
77

88
namespace Microsoft.AspNet.Builder
99
{

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.AspNet.FileProviders;
88
using Microsoft.AspNet.Hosting;
99
using Microsoft.AspNet.Http;
10-
using Microsoft.Framework.Internal;
10+
using Microsoft.Extensions.Internal;
1111
using Microsoft.Net.Http.Headers;
1212

1313
namespace Microsoft.AspNet.StaticFiles

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserServiceExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

4-
using Microsoft.Framework.Internal;
4+
using Microsoft.Extensions.Internal;
55
using Microsoft.AspNet.StaticFiles;
66

7-
namespace Microsoft.Framework.DependencyInjection
7+
namespace Microsoft.Extensions.DependencyInjection
88
{
99
/// <summary>
1010
/// Extension methods for adding directory browser services.

src/Microsoft.AspNet.StaticFiles/FileServerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using Microsoft.AspNet.Http;
66
using Microsoft.AspNet.StaticFiles;
7-
using Microsoft.Framework.Internal;
7+
using Microsoft.Extensions.Internal;
88

99
namespace Microsoft.AspNet.Builder
1010
{

src/Microsoft.AspNet.StaticFiles/HtmlDirectoryFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
using System.Threading.Tasks;
1010
using Microsoft.AspNet.FileProviders;
1111
using Microsoft.AspNet.Http;
12-
using Microsoft.Framework.WebEncoders;
12+
using Microsoft.Extensions.WebEncoders;
1313

1414
namespace Microsoft.AspNet.StaticFiles
1515
{

src/Microsoft.AspNet.StaticFiles/SendFileExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System;
55
using System.Collections.Generic;
66
using Microsoft.AspNet.Builder;
7-
using Microsoft.Framework.Internal;
7+
using Microsoft.Extensions.Internal;
88

99
namespace Microsoft.AspNet.StaticFiles
1010
{

0 commit comments

Comments
 (0)