diff --git a/src/Microsoft.AspNet.Routing.DecisionTree.Sources/project.json b/src/Microsoft.AspNet.Routing.DecisionTree.Sources/project.json index de7d56a244..16a6d47a6d 100644 --- a/src/Microsoft.AspNet.Routing.DecisionTree.Sources/project.json +++ b/src/Microsoft.AspNet.Routing.DecisionTree.Sources/project.json @@ -1,23 +1,21 @@ { - "description": "Components for building a DecisionTree.", - "version": "1.0.0-*", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/routing" - }, - "compilationOptions": { - "warningsAsErrors": true, - "keyFile": "../../tools/Key.snk" - }, - "shared": "**/*.cs", - "frameworks": { - "net451": { }, - "dotnet5.4": { - "dependencies": { - "System.Collections": "4.0.10", - "System.Linq": "4.0.0", - "System.Runtime": "4.0.20" - } - } + "description": "Components for building a DecisionTree.", + "version": "1.0.0-*", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/routing" + }, + "compilationOptions": { + "warningsAsErrors": true, + "keyFile": "../../tools/Key.snk" + }, + "shared": "**/*.cs", + "frameworks": { + "net451": { }, + "dotnet5.4": { + "dependencies": { + "System.Runtime": "4.0.21-*" + } } + } } diff --git a/test/Microsoft.AspNet.Routing.DecisionTree.Sources.Tests/project.json b/test/Microsoft.AspNet.Routing.DecisionTree.Sources.Tests/project.json index 098d979e95..23ffffcf24 100644 --- a/test/Microsoft.AspNet.Routing.DecisionTree.Sources.Tests/project.json +++ b/test/Microsoft.AspNet.Routing.DecisionTree.Sources.Tests/project.json @@ -1,21 +1,21 @@ { - "compilationOptions": { - "warningsAsErrors": true + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-*", + "Microsoft.AspNet.Routing.DecisionTree.Sources": { + "type": "build", + "version": "1.0.0-*" }, - "dependencies": { - "Microsoft.AspNet.Routing": "1.0.0-*", - "Microsoft.AspNet.Routing.DecisionTree.Sources": { - "type": "build", - "version": "1.0.0-*" - }, - "Microsoft.AspNet.Testing": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" - }, - "frameworks": { - "dnxcore50": { }, - "dnx451": { } - }, - "commands": { - "test": "xunit.runner.aspnet" - } + "Microsoft.AspNet.Testing": "1.0.0-*", + "xunit.runner.aspnet": "2.0.0-aspnet-*" + }, + "frameworks": { + "dnxcore50": { }, + "dnx451": { } + }, + "commands": { + "test": "xunit.runner.aspnet" + } }