Enable tests to use dotnet xunit runner

This commit is contained in:
Kiran Challa 2016-02-09 23:36:14 -08:00
parent b8bc1e2d46
commit d1a5ce82c0
2 changed files with 14 additions and 20 deletions

View File

@ -10,6 +10,12 @@
"xunit": "2.1.0"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"dotnet-test-xunit": "1.0.0-dev-*"
},
"imports": "portable-net451+win8"
},
"dnx451": {
"frameworkAssemblies": {
"System.Runtime": "",
@ -18,16 +24,7 @@
"dependencies": {
"xunit.runner.console": "2.1.0"
}
},
"dnxcore50": {
"dependencies": {
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"imports": "portable-net451+win8"
}
},
"testRunner": "xunit",
"commands": {
"test": "xunit.runner.aspnet"
}
"testRunner": "xunit"
}

View File

@ -11,6 +11,12 @@
"xunit": "2.1.0"
},
"frameworks": {
"dnxcore50": {
"dependencies": {
"dotnet-test-xunit": "1.0.0-dev-*"
},
"imports": "portable-net451+win8"
},
"dnx451": {
"frameworkAssemblies": {
"System.Runtime": "",
@ -19,16 +25,7 @@
"dependencies": {
"xunit.runner.console": "2.1.0"
}
},
"dnxcore50": {
"dependencies": {
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"imports": "portable-net451+win8"
}
},
"testRunner": "xunit",
"commands": {
"test": "xunit.runner.aspnet"
}
"testRunner": "xunit"
}