I have two assemblies with the same name in the Global Assembly cache, but with different version numbers. How do I tell my program which version to reference?
For the record, this is a VB.Net page in an ASP.Net web site.
|
|
|||||
|
|
|
As long as the version number is different (which would be required), you can specify the proper version through your web.config file. This is how I have things setup in one of my apps to reference the proper version of Crystal Reports, since we have multiple versions in the GAC:
|
||
|
|
|
|
Add the assembly to the config file under the assemblies section with version number.
The add element adds an assembly reference to use during compilation of a dynamic resource. ASP.NET automatically links this assembly to the resource when compiling each code module. |
||
|
|
|
|
When you add a reference to the DLL in your config file, you specify the version as well as the strong name: <add assembly="Foo.Bar, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> or <add assembly="Foo.Bar, Version=2.5.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/> |
||
|
|
|
|
To install an assembly in the GAC you have to give it a strong name. Strong names are never duplicated. So to specify which assembly you want to use you reference it by the strong name. |
||
|
|