我在Visual Studio 2015中创建了一个ASP.net vnext
类库项目。现在我想测试我的项目。所以,我想在我的测试项目中使用模拟东西。
这是我的project.json
文件
{
"version": "1.0.0-*",
"dependencies": {
"xunit": "2.0.0-rc3-build2880",
"xunit.runner.aspnet": "2.0.0-rc3-build52",
"My project name with version",
"Moq": "4.2.1502.911"
},
"commands": { "test": "xunit.runner.aspnet" },
"frameworks": {
"aspnet50": {
"dependencies": {
}
}
}
}
但是我收到错误:Dependency Moq
,无法解决版本4.2.1502.911。
我也尝试了Moq
的不同版本,但效果相同:dependency error
没有模拟,我无法进一步测试。
任何帮助?
答案 0 :(得分:0)
根据评论,错误是包管理器设置错误:
正确使用的Feed是:nuget.org/api/v2和myget.org/F/aspnetrelease for asp的