Fix ordering of usings and dependencies after namespace renaming

This commit is contained in:
Wei Wang 2014-05-06 14:59:55 -07:00
parent 3b57674141
commit 7c7efeda57
5 changed files with 11 additions and 11 deletions

View File

@ -16,10 +16,10 @@
// permissions and limitations under the License.
using System;
using Microsoft.AspNet.Http;
using Microsoft.Framework.ConfigurationModel;
using Microsoft.AspNet.Hosting.Server;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Hosting.Server;
using Microsoft.Framework.ConfigurationModel;
namespace Microsoft.AspNet.Hosting
{

View File

@ -17,10 +17,10 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Hosting.Builder;
using Microsoft.AspNet.Hosting.Server;
using Microsoft.AspNet.Builder;
namespace Microsoft.AspNet.Hosting
{

View File

@ -19,9 +19,9 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Http;
using Microsoft.Framework.DependencyInjection;
using Microsoft.AspNet.Builder;
namespace Microsoft.AspNet.Hosting.Startup
{

View File

@ -1,12 +1,12 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.Framework.DependencyInjection": "0.1-alpha-*",
"Microsoft.Framework.ConfigurationModel": "0.1-alpha-*",
"Microsoft.AspNet.PipelineCore": "0.1-alpha-*",
"Microsoft.AspNet.Http": "0.1-alpha-*",
"Microsoft.AspNet.FeatureModel": "0.1-alpha-*",
"Microsoft.AspNet.Http": "0.1-alpha-*",
"Microsoft.AspNet.PipelineCore": "0.1-alpha-*",
"Microsoft.AspNet.Security.DataProtection": "0.1-alpha-*",
"Microsoft.Framework.ConfigurationModel": "0.1-alpha-*",
"Microsoft.Framework.DependencyInjection": "0.1-alpha-*",
"Microsoft.Net.Runtime.Interfaces": "0.1-alpha-*"
},
"configurations": {

View File

@ -1,8 +1,8 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"Microsoft.Framework.DependencyInjection": "0.1-alpha-*",
"Microsoft.AspNet.Http": "0.1-alpha-*"
"Microsoft.AspNet.Http": "0.1-alpha-*",
"Microsoft.Framework.DependencyInjection": "0.1-alpha-*"
},
"configurations": {
"net45": {},