Update Microsoft.Owin dependencies to Microsoft.AspNet.

This commit is contained in:
Chris Ross 2014-02-07 11:29:22 -08:00
parent 86b1ac8f39
commit ad3112917b
16 changed files with 17 additions and 22 deletions

View File

@ -1,11 +1,11 @@
#if NET45 #if NET45
using System; using System;
using System.IO; using System.IO;
using Microsoft.AspNet.Abstractions;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet; using Microsoft.AspNet;
using Owin; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
using Owin;
namespace StaticFilesSample namespace StaticFilesSample
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.StaticFiles;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet
{ {

View File

@ -4,7 +4,7 @@ using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.Owin.FileSystems; using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.StaticFiles;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet
{ {

View File

@ -3,8 +3,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -7,8 +7,8 @@ using System.Linq;
using System.Net; using System.Net;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
{ {

View File

@ -2,8 +2,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.StaticFiles;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles.Infrastructure namespace Microsoft.AspNet.StaticFiles.Infrastructure
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles.Infrastructure namespace Microsoft.AspNet.StaticFiles.Infrastructure
{ {

View File

@ -23,5 +23,4 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM // The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("310c92f5-1719-4616-9ca8-a5788fcb86f8")] [assembly: Guid("310c92f5-1719-4616-9ca8-a5788fcb86f8")]
[assembly: CLSCompliant(true)]
[assembly: NeutralResourcesLanguage("en-US")] [assembly: NeutralResourcesLanguage("en-US")]

View File

@ -8,9 +8,9 @@ using System.IO;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.StaticFiles.Infrastructure; using Microsoft.AspNet.StaticFiles.Infrastructure;
using Microsoft.Owin.FileSystems;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.AspNet.StaticFiles;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet
{ {

View File

@ -3,7 +3,7 @@
using System; using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.Owin.FileSystems; using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -1,8 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System; using System;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -6,11 +6,7 @@
"Microsoft.AspNet.FileSystems" : "0.1-alpha-*" "Microsoft.AspNet.FileSystems" : "0.1-alpha-*"
}, },
"configurations": { "configurations": {
"net45": { "net45": { },
"dependencies": {
"Owin" : "1.0"
}
},
"k10" : { } "k10" : { }
} }
} }