Enable tests to run using dotnet xunit runner

This commit is contained in:
Kiran Challa 2016-02-09 22:32:46 -08:00
parent 44850090e3
commit 50d160d805
1 changed files with 11 additions and 14 deletions

View File

@ -4,8 +4,8 @@
"keyFile": "../../tools/Key.snk" "keyFile": "../../tools/Key.snk"
}, },
"content": [ "content": [
"SubFolder/**/*", "SubFolder/**/*",
"TestDocument.txt" "TestDocument.txt"
], ],
"dependencies": { "dependencies": {
"Microsoft.AspNetCore.StaticFiles": "1.0.0-*", "Microsoft.AspNetCore.StaticFiles": "1.0.0-*",
@ -16,24 +16,21 @@
"xunit": "2.1.0" "xunit": "2.1.0"
}, },
"frameworks": { "frameworks": {
"dnxcore50": {
"dependencies": {
"dotnet-test-xunit": "1.0.0-dev-*"
},
"imports": "portable-net451+win8"
},
"dnx451": { "dnx451": {
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Runtime": "", "System.Runtime": "",
"System.Threading.Tasks": "" "System.Threading.Tasks": ""
}, },
"dependencies": { "dependencies": {
"xunit.runner.console": "2.1.0" "xunit.runner.console": "2.1.0"
} }
},
"dnxcore50": {
"dependencies": {
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"imports": "portable-net451+win8"
} }
}, },
"testRunner": "xunit", "testRunner": "xunit"
"commands": { }
"test": "xunit.runner.aspnet"
}
}