Dll 如何在VS2013中打开VS2005文件/项目

Dll 如何在VS2013中打开VS2005文件/项目,dll,visual-studio-2005,visual-studio-2013,Dll,Visual Studio 2005,Visual Studio 2013,我正在做一个需要使用旧(2005)图书馆的项目 当我尝试将库添加到引用中时,会弹出一个错误,告诉我这一点(参见所附图片) 以下是例外情况的详细信息: System.DllNotFoundException occurred HResult=-2146233052 Message=Unable to load DLL 'edk.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E

我正在做一个需要使用旧(2005)图书馆的项目

当我尝试将库添加到引用中时,会弹出一个错误,告诉我这一点(参见所附图片)

以下是例外情况的详细信息:

System.DllNotFoundException occurred
  HResult=-2146233052
  Message=Unable to load DLL 'edk.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
  Source=DotNetEmotivSDK
  TypeName=""
  StackTrace:
       at Emotiv.EdkDll.Unmanged_EE_EmoEngineEventCreate()
       at Emotiv.EdkDll.EE_EmoEngineEventCreate()
       at Emotiv.EmoEngine..ctor()
       at Emotiv.EmoEngine.get_Instance()
       at MindComposer.EmotivSDK.HeadsetConnection.Main(String[] args) in c:\Users\Vlado Bogdanov\Documents\Visual Studio 2013\Projects\MindComposer\MindComposer\NeuroProcessing\HeadsetConnection.cs:line 37
  InnerException: 

那档案在那儿吗?它可读吗?是的,它是一个dll,我将它添加为所有其他dll,但只有这一个不工作。从您的错误消息中,它看起来像是一个本机dll,不能作为引用添加。您可以将其作为一个项添加到项目中(添加现有项),并将编译操作设置为:content/copy of newer。好的,我将尝试一下。未按预期工作,仍然无法运行。