I have a Visual Studio 2010 project, and I reference the Oracle.DataAccess.dll assembly, which points to the local version.
I explicitly set the "Specific Version" option to false, but when the application was built, I checked the build of the application and it has a specific link to
Oracle.DataAccess, Version = 2.112.3.0, Culture = Neutral, PublicKeyToken = 89b483f429c47342
How not to refer to a specific version of an assembly?
I would like to rely on the version of the version available in the bin folder.
Nowadays, obviously, depends on where the application is built. If I create a project on a machine with a different version of Oracle Client, then another version of Oracle.DataAccess will be used in the main application.
You should not rely on where the application is actually built. It should not refer to any particular version.
source
share