diff --git a/samples/RoutingSample.Web/project.json b/samples/RoutingSample.Web/project.json index cfdb966ed8..786cb042f8 100644 --- a/samples/RoutingSample.Web/project.json +++ b/samples/RoutingSample.Web/project.json @@ -1,7 +1,7 @@ { "dependencies": { "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.AspNet.Routing" : "", + "Microsoft.AspNet.Routing" : "1.0.0-*", "Microsoft.AspNet.RequestContainer": "1.0.0-*", "Microsoft.Framework.OptionsModel": "1.0.0-*" }, diff --git a/test/Microsoft.AspNet.Routing.Tests/project.json b/test/Microsoft.AspNet.Routing.Tests/project.json index 79fa211cbe..cd51963e04 100644 --- a/test/Microsoft.AspNet.Routing.Tests/project.json +++ b/test/Microsoft.AspNet.Routing.Tests/project.json @@ -1,34 +1,32 @@ { - "compilationOptions": { - "warningsAsErrors": "true" - }, - "dependencies": { - "Microsoft.AspNet.Http" : "1.0.0-*", - "Microsoft.AspNet.Routing" : "", - "Microsoft.AspNet.Testing" : "1.0.0-*", - "Microsoft.Framework.Logging" : "1.0.0-*", - "Xunit.KRunner": "1.0.0-*" - }, - "frameworks": { - "aspnetcore50": { - "dependencies": { - "System.Collections": "4.0.10.0", - "System.Linq": "4.0.0.0", - "System.Runtime": "4.0.20.0", - "System.Runtime.Extensions": "4.0.10.0", - "System.Threading": "4.0.0.0", - "System.Threading.Tasks": "4.0.10.0", - "System.Text.RegularExpressions": "4.0.0.0" - } + "compilationOptions": { + "warningsAsErrors": "true" }, - "aspnet50": { - "dependencies": { - "Moq": "4.2.1312.1622", - "System.Runtime": "" - } + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-*", + "Microsoft.AspNet.Testing": "1.0.0-*", + "Microsoft.Framework.Logging": "1.0.0-*", + "Xunit.KRunner": "1.0.0-*" + }, + "frameworks": { + "aspnetcore50": { + "dependencies": { + "System.Collections": "4.0.10.0", + "System.Linq": "4.0.0.0", + "System.Runtime": "4.0.20.0", + "System.Runtime.Extensions": "4.0.10.0", + "System.Threading": "4.0.0.0", + "System.Threading.Tasks": "4.0.10.0", + "System.Text.RegularExpressions": "4.0.0.0" + } + }, + "aspnet50": { + "dependencies": { + "Moq": "4.2.1312.1622" + } + } + }, + "commands": { + "test": "Xunit.KRunner" } - }, - "commands": { - "test": "Xunit.KRunner" - } }