Changes to match package and namespace renames

This commit is contained in:
Pranav K 2014-05-06 11:56:16 -07:00
parent bc31b50b45
commit 4a2a525b47
20 changed files with 28 additions and 26 deletions

View File

@ -18,8 +18,8 @@
using System; using System;
using System.IO; using System.IO;
using Microsoft.AspNet; using Microsoft.AspNet;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
namespace StaticFilesSample namespace StaticFilesSample

View File

@ -3,7 +3,7 @@
"Helios": "0.1-alpha-*", "Helios": "0.1-alpha-*",
"Microsoft.AspNet.FileSystems": "0.1-alpha-*", "Microsoft.AspNet.FileSystems": "0.1-alpha-*",
"Microsoft.AspNet.StaticFiles": "", "Microsoft.AspNet.StaticFiles": "",
"Microsoft.AspNet.Abstractions": "0.1-alpha-*" "Microsoft.AspNet.Http": "0.1-alpha-*"
}, },
"configurations": { "configurations": {
"net45": { "net45": {

View File

@ -16,10 +16,10 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet.Builder
{ {
/// <summary> /// <summary>
/// Extension methods for the DefaultFilesMiddleware /// Extension methods for the DefaultFilesMiddleware

View File

@ -18,8 +18,9 @@
using System; 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.Builder;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -16,10 +16,10 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet.Builder
{ {
/// <summary> /// <summary>
/// Extension methods for the DirectoryBrowserMiddleware /// Extension methods for the DirectoryBrowserMiddleware

View File

@ -18,8 +18,9 @@
using System; 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.Builder;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -22,8 +22,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.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters namespace Microsoft.AspNet.StaticFiles.DirectoryFormatters
{ {

View File

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

View File

@ -16,10 +16,10 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet.Builder
{ {
/// <summary> /// <summary>
/// Extension methods that combine all of the static file middleware components: /// Extension methods that combine all of the static file middleware components:

View File

@ -17,7 +17,7 @@
using System; using System;
using System.Globalization; using System.Globalization;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -16,8 +16,8 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles.Infrastructure namespace Microsoft.AspNet.StaticFiles.Infrastructure
{ {

View File

@ -16,8 +16,8 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles.Infrastructure namespace Microsoft.AspNet.StaticFiles.Infrastructure
{ {

View File

@ -17,7 +17,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Builder;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -19,7 +19,8 @@ using System;
using System.IO; using System.IO;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.HttpFeature;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles

View File

@ -18,7 +18,7 @@
using System; using System;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.HttpFeature;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles

View File

@ -20,10 +20,9 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Globalization; using System.Globalization;
using System.IO; using System.IO;
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.HttpFeature; using Microsoft.AspNet.HttpFeature;
using Microsoft.AspNet.StaticFiles.Infrastructure; using Microsoft.AspNet.StaticFiles.Infrastructure;

View File

@ -16,10 +16,10 @@
// permissions and limitations under the License. // permissions and limitations under the License.
using System; using System;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Http;
using Microsoft.AspNet.StaticFiles; using Microsoft.AspNet.StaticFiles;
namespace Microsoft.AspNet namespace Microsoft.AspNet.Builder
{ {
/// <summary> /// <summary>
/// Extension methods for the StaticFileMiddleware /// Extension methods for the StaticFileMiddleware

View File

@ -17,8 +17,9 @@
using System; using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNet.Abstractions; using Microsoft.AspNet.Builder;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -15,9 +15,8 @@
// See the Apache 2 License for the specific language governing // See the Apache 2 License for the specific language governing
// permissions and limitations under the License. // permissions and limitations under the License.
using System;
using Microsoft.AspNet.Abstractions;
using Microsoft.AspNet.FileSystems; using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.StaticFiles namespace Microsoft.AspNet.StaticFiles
{ {

View File

@ -1,7 +1,7 @@
{ {
"version": "0.1-alpha-*", "version": "0.1-alpha-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Abstractions": "0.1-alpha-*", "Microsoft.AspNet.Http": "0.1-alpha-*",
"Microsoft.AspNet.HttpFeature": "0.1-alpha-*", "Microsoft.AspNet.HttpFeature": "0.1-alpha-*",
"Microsoft.AspNet.FileSystems": "0.1-alpha-*" "Microsoft.AspNet.FileSystems": "0.1-alpha-*"
}, },