React to Cors api review changes

This commit is contained in:
Kiran Challa 2015-10-08 13:48:51 -07:00
parent fd17481a73
commit fbf66168fe
12 changed files with 15 additions and 18 deletions

View File

@ -3,7 +3,7 @@
using System;
using System.Linq;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.AspNet.Mvc.ApplicationModels;
namespace Microsoft.AspNet.Mvc.Cors

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Mvc.Filters;
using Microsoft.Extensions.Primitives;

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.AspNet.Mvc.ApplicationModels;
using Microsoft.AspNet.Mvc.Cors;
using Microsoft.Extensions.DependencyInjection.Extensions;

View File

@ -3,7 +3,7 @@
using System;
using System.Threading.Tasks;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Mvc.Filters;
using Microsoft.Extensions.Primitives;

View File

@ -9,7 +9,7 @@
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Cors.Core": "6.0.0-*",
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.Mvc.Core": "6.0.0-*"
},

View File

@ -3,7 +3,7 @@
using System.Linq;
using System.Reflection;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors;
using Microsoft.AspNet.Mvc.ApplicationModels;
using Xunit;

View File

@ -5,7 +5,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Internal;
using Microsoft.AspNet.Mvc.Abstractions;

View File

@ -1,14 +1,11 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Cors.Core;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.AspNet.Cors.Infrastructure;
using Xunit;
namespace Microsoft.AspNet.Mvc.FunctionalTests

View File

@ -5,7 +5,7 @@ using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading.Tasks;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Xunit;
namespace Microsoft.AspNet.Mvc.FunctionalTests

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors;
using Microsoft.AspNet.Mvc;
namespace CorsWebSite

View File

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Builder;
using Microsoft.AspNet.Cors.Core;
using Microsoft.AspNet.Cors.Infrastructure;
using Microsoft.Extensions.DependencyInjection;
namespace CorsWebSite

View File

@ -5,7 +5,7 @@
},
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.AspNet.Cors.Core": "6.0.0-*",
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.Mvc": "6.0.0-*",
"Microsoft.AspNet.Mvc.Formatters.Xml": "6.0.0-*",
"Microsoft.AspNet.Mvc.TestConfiguration": "1.0.0",