无法从单元测试项目中引用其他.net核心项目

时间:2017-01-09 18:16:29

标签: unit-testing .net-core xunit

我正在尝试使用xunit对我拥有的项目进行单元测试。我创建了一个新的.Net核心类库项目并引用了另一个项目,但是我想要的类没有显示出来。

这是测试项目中的project.json文件(我知道还没有xunit) This is the project.json file in the test project(I know there is no xunit yet)

Resharper知道它在那里,但当我按下该选项时没有任何反应。 Resharper knows it is there, but when I press the option nothing happens.

更新:Project.Json for WeatherMob

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要在测试项目项目依赖项中引用您的主项目。

<TablixMember><Visibility><Hidden>=...

此功能仅在目录结构正确时才有效。这意味着WeatherMob和Test项目需要位于同一个文件夹中。

"dependencies" : {
  "NETStandard.Library" : "1.6.0",
  "WeatherMob": "1.0.0-*"
}