我正在Visual Studio 2010
为我现有的项目创建一个测试项目。我添加了一个DLL
在我正在为其创建此测试项目的项目中使用的参考。
现在的问题是,在添加该 DLL 的引用后,当我尝试执行测试时,我得到一个运行时异常
System.IO.FileNotFoundException: Could not load file or assembly
'SOME NAME, Version=2.5.2.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified
我已经通过将该Copy Local
引用的属性更改为 True 来解决这个问题。但我不想把它改成真的。因为我不想在测试项目的调试文件夹中复制它。
还有其他方法吗?