Skip to content
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.

Commit

Permalink
Update CORS package version to 6.0.0
Browse files Browse the repository at this point in the history
Fixes #24
  • Loading branch information
pranavkm committed Sep 22, 2015
1 parent d076b01 commit bf66dce
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion samples/UseOptions/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"webroot": "wwwroot",
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.Cors": "1.0.0-*",
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
Expand Down
2 changes: 1 addition & 1 deletion samples/UsePolicyBuilder/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"webroot": "wwwroot",
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.Cors": "1.0.0-*",
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.Diagnostics": "1.0.0-*",
"Microsoft.AspNet.Server.IIS": "1.0.0-*",
"Microsoft.AspNet.Server.WebListener": "1.0.0-*",
Expand Down
5 changes: 4 additions & 1 deletion src/Microsoft.AspNet.Cors.Core/project.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"version": "1.0.0-*",
"version": "6.0.0-*",
"repository": {
"type": "git",
"url": "https://github.com/aspnet/cors"
},
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Http.Extensions": "1.0.0-*",
"Microsoft.Framework.Configuration.Abstractions": "1.0.0-*",
Expand Down
7 changes: 5 additions & 2 deletions src/Microsoft.AspNet.Cors/project.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
{
"version": "1.0.0-*",
"version": "6.0.0-*",
"repository": {
"type": "git",
"url": "https://github.com/aspnet/cors"
},
"compilationOptions": {
"warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Cors.Core": "1.0.0-*"
"Microsoft.AspNet.Cors.Core": "6.0.0-*"
},

"frameworks" : {
Expand Down
1 change: 0 additions & 1 deletion test/Microsoft.AspNet.Cors.Core.Test/CorsServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using System.Linq;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Internal;
using Microsoft.Framework.OptionsModel;
Expand Down
7 changes: 2 additions & 5 deletions test/Microsoft.AspNet.Cors.Core.Test/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "1.0.0-*",

"dependencies": {
"Microsoft.AspNet.Cors.Core": "1.0.0-*",
"Microsoft.AspNet.Cors.Core": "6.0.0-*",
"Microsoft.AspNet.Http": "1.0.0-*",
"Moq": "4.2.1312.1622",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
Expand All @@ -13,9 +13,6 @@
},

"frameworks" : {
"dnx451" : {
"dependencies": {
}
}
"dnx451" : { }
}
}
2 changes: 1 addition & 1 deletion test/Microsoft.AspNet.Cors.Test/project.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.Cors": "1.0.0-*",
"Microsoft.AspNet.Cors": "6.0.0-*",
"Microsoft.AspNet.TestHost": "1.0.0-*",
"Moq": "4.2.1312.1622",
"xunit.runner.aspnet": "2.0.0-aspnet-*"
Expand Down

0 comments on commit bf66dce

Please sign in to comment.