[quick fix] Allow `TestCommon` project to build successfully

- otherwise may fail in VS or when using `BuildV2` from the command line
This commit is contained in:
Doug Bunting 2015-09-18 16:41:53 -07:00
parent 90777c903d
commit 0476d53f1d
1 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,12 @@
{
"version": "6.0.0-*",
"shared": "**/*.cs",
"frameworks": {
"dnx451": {},
"dnxcore50": {}
"version": "6.0.0-*",
"shared": "**/*.cs",
"frameworks": {
"dnx451": {},
"dnxcore50": {
"dependencies": {
"System.Runtime": "4.0.21-beta-*"
}
}
}
}