Problem replacing a reference in Visual Studio-ASP.NET

前端 未结 1 1200
说谎
说谎 2021-01-29 14:26

I am developing an application in ASP.NET when I start the project add an Oracle reference. DataAccess version 2.112.3.0 so far so good, the problem is when I try to replace tha

相关标签:
1条回答
  • 2021-01-29 15:24

    The version of Oracle.DataAccess.Client has to match exactly the version of installed Oracle Client, so a simple replace will not work anyway.

    When a DLL is loaded then the application first looks into the GAC. If the DLL is not found there then the local folder is check. - Well, this is the very short version, the proper version you find at How the Runtime Locates Assemblies

    Apart from that, your question is not really clear to me, what do you try to achieve and what is the problem? You may also edit your *.csproj/*.vbproj file with a text editor.

    0 讨论(0)
提交回复
热议问题