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

Commit 4a2a525

Browse files
committed
Changes to match package and namespace renames
1 parent bc31b50 commit 4a2a525

20 files changed

+28
-26
lines changed

samples/StaticFileSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
using System;
1919
using System.IO;
2020
using Microsoft.AspNet;
21-
using Microsoft.AspNet.Abstractions;
2221
using Microsoft.AspNet.FileSystems;
22+
using Microsoft.AspNet.Http;
2323
using Microsoft.AspNet.StaticFiles;
2424

2525
namespace StaticFilesSample

samples/StaticFileSample/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Helios": "0.1-alpha-*",
44
"Microsoft.AspNet.FileSystems": "0.1-alpha-*",
55
"Microsoft.AspNet.StaticFiles": "",
6-
"Microsoft.AspNet.Abstractions": "0.1-alpha-*"
6+
"Microsoft.AspNet.Http": "0.1-alpha-*"
77
},
88
"configurations": {
99
"net45": {

src/Microsoft.AspNet.StaticFiles/DefaultFilesExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
// permissions and limitations under the License.
1717

1818
using System;
19-
using Microsoft.AspNet.Abstractions;
19+
using Microsoft.AspNet.Http;
2020
using Microsoft.AspNet.StaticFiles;
2121

22-
namespace Microsoft.AspNet
22+
namespace Microsoft.AspNet.Builder
2323
{
2424
/// <summary>
2525
/// Extension methods for the DefaultFilesMiddleware

src/Microsoft.AspNet.StaticFiles/DefaultFilesMiddleware.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
using System;
1919
using System.Collections.Generic;
2020
using System.Threading.Tasks;
21-
using Microsoft.AspNet.Abstractions;
21+
using Microsoft.AspNet.Builder;
2222
using Microsoft.AspNet.FileSystems;
23+
using Microsoft.AspNet.Http;
2324

2425
namespace Microsoft.AspNet.StaticFiles
2526
{

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
// permissions and limitations under the License.
1717

1818
using System;
19-
using Microsoft.AspNet.Abstractions;
19+
using Microsoft.AspNet.Http;
2020
using Microsoft.AspNet.StaticFiles;
2121

22-
namespace Microsoft.AspNet
22+
namespace Microsoft.AspNet.Builder
2323
{
2424
/// <summary>
2525
/// Extension methods for the DirectoryBrowserMiddleware

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserMiddleware.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
using System;
1919
using System.Collections.Generic;
2020
using System.Threading.Tasks;
21-
using Microsoft.AspNet.Abstractions;
21+
using Microsoft.AspNet.Builder;
2222
using Microsoft.AspNet.FileSystems;
23+
using Microsoft.AspNet.Http;
2324

2425
namespace Microsoft.AspNet.StaticFiles
2526
{

src/Microsoft.AspNet.StaticFiles/DirectoryFormatters/HtmlDirectoryFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
using System.Net;
2323
using System.Text;
2424
using System.Threading.Tasks;
25-
using Microsoft.AspNet.Abstractions;
2625
using Microsoft.AspNet.FileSystems;
26+
using Microsoft.AspNet.Http;
2727

2828
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
2929
{

src/Microsoft.AspNet.StaticFiles/DirectoryFormatters/IDirectoryFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
using System.Collections.Generic;
1919
using System.Threading.Tasks;
20-
using Microsoft.AspNet.Abstractions;
2120
using Microsoft.AspNet.FileSystems;
21+
using Microsoft.AspNet.Http;
2222

2323
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
2424
{

src/Microsoft.AspNet.StaticFiles/FileServerExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
// permissions and limitations under the License.
1717

1818
using System;
19-
using Microsoft.AspNet.Abstractions;
19+
using Microsoft.AspNet.Http;
2020
using Microsoft.AspNet.StaticFiles;
2121

22-
namespace Microsoft.AspNet
22+
namespace Microsoft.AspNet.Builder
2323
{
2424
/// <summary>
2525
/// Extension methods that combine all of the static file middleware components:

src/Microsoft.AspNet.StaticFiles/Helpers.cs

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

1818
using System;
1919
using System.Globalization;
20-
using Microsoft.AspNet.Abstractions;
20+
using Microsoft.AspNet.Http;
2121

2222
namespace Microsoft.AspNet.StaticFiles
2323
{

0 commit comments

Comments
 (0)