Click here to Skip to main content
15,895,709 members
Please Sign up or sign in to vote.
3.67/5 (2 votes)
See more:
Hi,
I have application that are using a dll. The DLL has installed in GAC. now I want to change the DLL with another version.
Mean now my application should automatic connect with new version of DLL.
is there a way to use new dll to existing application without modifying the existing application which is using the DLL.
Posted

1 solution

You can sign the modified assembly and push it to the GAC, so that the applications which reference this assembly, will be unaware of the difference.

You should:
- Specify all parts of the version number, meaning in version A.B.C.D specify all parts (A, B, C and D), rather than A.B.C.* in AssemblyInfo.cs file,
- Use the same sn key.

Now version-specific references should reach the dll safe and sound.

See a wonderful CP article on the topic by Oren Shwartz:
Assemblies: locating, binding and deploying[^]

Cheers,
Edo
 
Share this answer
 
v6

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900