Fixing compilation failure due to change in namespace in Microsoft.AspNet.FileSystem

This commit is contained in:
Pranav K 2014-02-06 16:48:06 -08:00
parent 591e21eea9
commit cfc6b9ecdd
6 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
using System;
using System.Collections.Concurrent;
using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.Mvc.Razor
{

View File

@ -7,7 +7,7 @@ using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.Mvc.Razor
{

View File

@ -1,5 +1,5 @@
using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.Mvc.Razor
{

View File

@ -3,8 +3,8 @@ using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Razor;
using Microsoft.Owin.FileSystems;
namespace Microsoft.AspNet.Mvc.Razor
{

View File

@ -1,6 +1,6 @@
using System;
using System.Threading.Tasks;
using Microsoft.Owin.FileSystems;
using Microsoft.AspNet.FileSystems;
namespace Microsoft.AspNet.Mvc.Razor
{

View File

@ -1,6 +1,6 @@
using Microsoft.AspNet.DependencyInjection;
using Microsoft.AspNet.FileSystems;
using Microsoft.AspNet.Mvc.Razor;
using Microsoft.Owin.FileSystems;
namespace Microsoft.AspNet.Mvc.Startup
{