System.IO.FileNotFoundException:无法加载文件或程序集“Microsoft.Practices.EnterpriseLibrary.Data,Version = 2.0.0.0,Culture = neutral,PublicKeyToken = null”或其依赖项之一。系统找不到指定的文件。
我尝试在本地主机上测试我的webservice方法时出现此错误。我在这一行得到了错误。
public ICampgroundsNearMeManager campgroundsNearMeManager = ManagerFactory.CreateCampgroundsNearMeManager();
可能出现什么问题?
答案 0 :(得分:0)
尝试使用Assembly Binding Log Viewer获取更多信息。
答案 1 :(得分:0)
得到了解决方案。
似乎是我导入的DLL文件的问题。删除了DLL,清理并构建了项目,并且工作正常。