Added ability to run unit tests on build

This commit is contained in:
David Fowler 2014-03-08 12:34:29 -08:00
parent f420ba4600
commit 7423a21b11
2 changed files with 18 additions and 5 deletions

3
global.json Normal file
View File

@ -0,0 +1,3 @@
{
"sources": ["src"]
}

View File

@ -1,12 +1,22 @@
{
"version": "0.1-alpha-*",
"dependencies": {
"xunit": "1.9.2",
"Microsoft.AspNet.Hosting":"",
"Microsoft.AspNet.Abstractions":"0.1-alpha-*",
"Microsoft.AspNet.DependencyInjection":"0.1-alpha-*"
"Microsoft.AspNet.Hosting": "",
"Microsoft.AspNet.Abstractions":"0.1-alpha-*",
"Microsoft.AspNet.DependencyInjection":"0.1-alpha-*",
"Xunit.KRunner": "0.1-alpha-*",
"xunit.abstractions": "3.0.0-alpha-*",
"xunit2": "0.1-alpha-*",
"xunit2.assert": "0.1-alpha-*"
},
"configurations": {
"net45": {}
"net45": {
"dependencies": {
"System.Runtime" : ""
}
}
},
"commands": {
"test": "Xunit.KRunner"
}
}