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

Commit ad31129

Browse files
committed
Update Microsoft.Owin dependencies to Microsoft.AspNet.
1 parent 86b1ac8 commit ad31129

16 files changed

+17
-22
lines changed

samples/StaticFileSample/Startup.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#if NET45
22
using System;
33
using System.IO;
4-
using Microsoft.AspNet.Abstractions;
5-
using Microsoft.Owin.FileSystems;
64
using Microsoft.AspNet;
7-
using Owin;
5+
using Microsoft.AspNet.Abstractions;
6+
using Microsoft.AspNet.FileSystems;
87
using Microsoft.AspNet.StaticFiles;
8+
using Owin;
99

1010
namespace StaticFilesSample
1111
{

src/Microsoft.AspNet.StaticFiles/DefaultFilesExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
22

33
using System;
4-
using Microsoft.AspNet.StaticFiles;
54
using Microsoft.AspNet.Abstractions;
5+
using Microsoft.AspNet.StaticFiles;
66

77
namespace Microsoft.AspNet
88
{

src/Microsoft.AspNet.StaticFiles/DefaultFilesMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using System.Collections.Generic;
55
using System.Threading.Tasks;
66
using Microsoft.AspNet.Abstractions;
7-
using Microsoft.Owin.FileSystems;
7+
using Microsoft.AspNet.FileSystems;
88

99
namespace Microsoft.AspNet.StaticFiles
1010
{

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
22

33
using System;
4-
using Microsoft.AspNet.StaticFiles;
54
using Microsoft.AspNet.Abstractions;
5+
using Microsoft.AspNet.StaticFiles;
66

77
namespace Microsoft.AspNet
88
{

src/Microsoft.AspNet.StaticFiles/DirectoryBrowserMiddleware.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
using System;
44
using System.Collections.Generic;
55
using System.Threading.Tasks;
6-
using Microsoft.Owin.FileSystems;
76
using Microsoft.AspNet.Abstractions;
7+
using Microsoft.AspNet.FileSystems;
88

99
namespace Microsoft.AspNet.StaticFiles
1010
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
using System.Net;
88
using System.Text;
99
using System.Threading.Tasks;
10-
using Microsoft.Owin.FileSystems;
1110
using Microsoft.AspNet.Abstractions;
11+
using Microsoft.AspNet.FileSystems;
1212

1313
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
1414
{

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

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

33
using System.Collections.Generic;
44
using System.Threading.Tasks;
5-
using Microsoft.Owin.FileSystems;
65
using Microsoft.AspNet.Abstractions;
6+
using Microsoft.AspNet.FileSystems;
77

88
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
99
{

src/Microsoft.AspNet.StaticFiles/FileServerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
22

33
using System;
4-
using Microsoft.AspNet.StaticFiles;
54
using Microsoft.AspNet.Abstractions;
5+
using Microsoft.AspNet.StaticFiles;
66

77
namespace Microsoft.AspNet
88
{

src/Microsoft.AspNet.StaticFiles/Infrastructure/SharedOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
22

33
using System;
4-
using Microsoft.Owin.FileSystems;
54
using Microsoft.AspNet.Abstractions;
5+
using Microsoft.AspNet.FileSystems;
66

77
namespace Microsoft.AspNet.StaticFiles.Infrastructure
88
{

src/Microsoft.AspNet.StaticFiles/Infrastructure/SharedOptionsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
22

33
using System;
4-
using Microsoft.Owin.FileSystems;
54
using Microsoft.AspNet.Abstractions;
5+
using Microsoft.AspNet.FileSystems;
66

77
namespace Microsoft.AspNet.StaticFiles.Infrastructure
88
{

0 commit comments

Comments
 (0)