Fix for build break. Removing reference to official xunit package.

This commit is contained in:
Kiran Challa 2015-09-22 14:55:36 -07:00
parent 6928ff96c5
commit ed70441162
3 changed files with 4 additions and 5 deletions

View File

@ -2,7 +2,6 @@
<configuration>
<packageSources>
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
<add key="xunit" value="https://www.myget.org/F/xunit/api/v2" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>

View File

@ -3,13 +3,13 @@
"Microsoft.AspNet.Localization": "1.0.0-*",
"Microsoft.AspNet.TestHost": "1.0.0-*",
"xunit": "2.1.0-*",
"xunit.runner.dnx": "2.1.0-*"
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
},
"commands": {
"test": "xunit.runner.dnx"
"test": "xunit.runner.aspnet"
}
}

View File

@ -3,7 +3,7 @@
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
"Microsoft.Framework.Localization": "1.0.0-*",
"xunit": "2.1.0-*",
"xunit.runner.dnx": "2.1.0-*"
"xunit.runner.aspnet": "2.0.0-aspnet-*"
},
"frameworks": {
"dnx451": { },
@ -14,6 +14,6 @@
}
},
"commands": {
"test": "xunit.runner.dnx"
"test": "xunit.runner.aspnet"
}
}