Added references to required K packages

This commit is contained in:
David Fowler 2014-03-07 02:28:46 -08:00
parent d52e000f30
commit f5a43708ee
2 changed files with 26 additions and 4 deletions

View File

@ -15,6 +15,12 @@
"Microsoft.Owin.Hosting" : "2.1.0" "Microsoft.Owin.Hosting" : "2.1.0"
} }
}, },
"k10": {} "k10": {
"dependencies": {
"System.Diagnostics.Debug": "4.0.10.0",
"System.Runtime": "4.0.20.0",
"System.Threading.Tasks": "4.0.0.0"
}
}
} }
} }

View File

@ -1,10 +1,26 @@
{ {
"version": "0.1-alpha-*", "version": "0.1-alpha-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Abstractions" : "0.1-alpha-*" "Microsoft.AspNet.Abstractions": "0.1-alpha-*"
}, },
"configurations": { "configurations": {
"net45": { }, "net45": {},
"k10" : { } "k10": {
"dependencies": {
"System.Collections": "4.0.0.0",
"System.Diagnostics.Contracts": "4.0.0.0",
"System.Diagnostics.Debug": "4.0.10.0",
"System.Diagnostics.Tools": "4.0.0.0",
"System.Globalization": "4.0.10.0",
"System.Linq": "4.0.0.0",
"System.Reflection": "4.0.10.0",
"System.Reflection.Compatibility": "4.0.0.0",
"System.Resources.ResourceManager": "4.0.0.0",
"System.Runtime": "4.0.20.0",
"System.Runtime.Extensions": "4.0.10.0",
"System.Text.RegularExpressions": "4.0.0.0",
"System.Threading.Tasks": "4.0.0.0"
}
}
} }
} }