Visual Studio 2013编译一个项目时出现如下的错误:
The type or namespace name 'TestClass' could not be found (are you missing a using directive or an assembly reference?)
对应的代码如下:
namespace NuGetGallery.Framework { public class TestContainer : TestClass, IDisposable { //... } }
说白了就是引用里面缺少dll,所以才找不到TestClass
你说的对,是少了xunit.extensions.dll
重新生成解决方案,删除引用添加引用重新生成解决方案……