We have two version of the same assembly in GAC? I want my client to make choice of which assembly to choose?
|
2
|
|
|
|
|
|
Try the following in your config file:
You need to specify “bindingRedirect” in your config file. For ins in the above case “clsLibVsn” has two versions “1.1.1830.10493” and “1.0.1830.1 from which “1.1.1830.10493” is the recent version. But using the bindingRedirect we can s saying “1.0.1830.10461” is the new version. So the client will not use “1.1.1830.10493”. |
||
|
|
|
|
You can use System.Activator class and its static CreateInstance method which has number of overloads. You can specify the full assembly name in a format like System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 |
||
|
|
|
You can program your application to edit app.config file. You should write something similar to this:
in your app.config. This will allow to specify assembly version your application needs. |
||
|
|
