Fixing CoreCLR package versions

This commit is contained in:
Pranav K 2015-12-08 16:23:11 -08:00
parent 39451a57b6
commit 411a59125c
2 changed files with 36 additions and 38 deletions

View File

@ -1,23 +1,21 @@
{ {
"description": "Components for building a DecisionTree.", "description": "Components for building a DecisionTree.",
"version": "1.0.0-*", "version": "1.0.0-*",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/aspnet/routing" "url": "git://github.com/aspnet/routing"
}, },
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"shared": "**/*.cs", "shared": "**/*.cs",
"frameworks": { "frameworks": {
"net451": { }, "net451": { },
"dotnet5.4": { "dotnet5.4": {
"dependencies": { "dependencies": {
"System.Collections": "4.0.10", "System.Runtime": "4.0.21-*"
"System.Linq": "4.0.0", }
"System.Runtime": "4.0.20"
}
}
} }
}
} }

View File

@ -1,21 +1,21 @@
{ {
"compilationOptions": { "compilationOptions": {
"warningsAsErrors": true "warningsAsErrors": true
},
"dependencies": {
"Microsoft.AspNet.Routing": "1.0.0-*",
"Microsoft.AspNet.Routing.DecisionTree.Sources": {
"type": "build",
"version": "1.0.0-*"
}, },
"dependencies": { "Microsoft.AspNet.Testing": "1.0.0-*",
"Microsoft.AspNet.Routing": "1.0.0-*", "xunit.runner.aspnet": "2.0.0-aspnet-*"
"Microsoft.AspNet.Routing.DecisionTree.Sources": { },
"type": "build", "frameworks": {
"version": "1.0.0-*" "dnxcore50": { },
}, "dnx451": { }
"Microsoft.AspNet.Testing": "1.0.0-*", },
"xunit.runner.aspnet": "2.0.0-aspnet-*" "commands": {
}, "test": "xunit.runner.aspnet"
"frameworks": { }
"dnxcore50": { },
"dnx451": { }
},
"commands": {
"test": "xunit.runner.aspnet"
}
} }