Renamed configurations to frameworks in project.json

This commit is contained in:
David Fowler 2014-07-13 21:50:14 -07:00
parent 5208421ad5
commit b6243326c3
5 changed files with 15 additions and 15 deletions

View File

@ -1,4 +1,4 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.FeatureModel": "1.0.0-*", "Microsoft.AspNet.FeatureModel": "1.0.0-*",
@ -10,7 +10,7 @@
"Microsoft.Framework.Logging": "1.0.0-*", "Microsoft.Framework.Logging": "1.0.0-*",
"Microsoft.Framework.Runtime.Interfaces": "1.0.0-*" "Microsoft.Framework.Runtime.Interfaces": "1.0.0-*"
}, },
"configurations": { "frameworks": {
"net45": {}, "net45": {},
"k10": { "k10": {
"dependencies": { "dependencies": {
@ -28,4 +28,4 @@
} }
} }
} }
} }

View File

@ -1,11 +1,11 @@
{ {
"version": "1.0.0-*", "version": "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Http": "1.0.0-*", "Microsoft.AspNet.Http": "1.0.0-*",
"Microsoft.Framework.DependencyInjection": "1.0.0-*", "Microsoft.Framework.DependencyInjection": "1.0.0-*",
"Microsoft.Framework.OptionsModel": "1.0.0-*" "Microsoft.Framework.OptionsModel": "1.0.0-*"
}, },
"configurations": { "frameworks": {
"net45": {}, "net45": {},
"k10": { "k10": {
"dependencies": { "dependencies": {
@ -23,4 +23,4 @@
} }
} }
} }
} }

View File

@ -1,9 +1,9 @@
{ {
"version" : "1.0.0-*", "version" : "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Hosting": "" "Microsoft.AspNet.Hosting": ""
}, },
"configurations": { "frameworks": {
"net45": { }, "net45": { },
"k10" : { "k10" : {
"dependencies": { "dependencies": {
@ -21,4 +21,4 @@
} }
} }
} }
} }

View File

@ -1,10 +1,10 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.AspNet.Hosting": "", "Microsoft.AspNet.Hosting": "",
"Microsoft.AspNet.RequestContainer": "", "Microsoft.AspNet.RequestContainer": "",
"Xunit.KRunner": "1.0.0-*" "Xunit.KRunner": "1.0.0-*"
}, },
"configurations": { "frameworks": {
"net45": { "net45": {
"dependencies": { "dependencies": {
"System.Runtime" : "" "System.Runtime" : ""
@ -14,4 +14,4 @@
"commands": { "commands": {
"test": "Xunit.KRunner" "test": "Xunit.KRunner"
} }
} }

View File

@ -1,4 +1,4 @@
{ {
"dependencies": { "dependencies": {
"Microsoft.AspNet.Hosting": "", "Microsoft.AspNet.Hosting": "",
"Microsoft.AspNet.TestHost": "", "Microsoft.AspNet.TestHost": "",
@ -8,11 +8,11 @@
"commands": { "commands": {
"test": "Xunit.KRunner" "test": "Xunit.KRunner"
}, },
"configurations": { "frameworks": {
"net45": { "net45": {
"dependencies": { "dependencies": {
"System.Runtime": "" "System.Runtime": ""
} }
} }
} }
} }