DLL Hell

  • Thread starter Thread starter Rick
  • Start date Start date
R

Rick

Developed .NET application with the following structure:

support1.dll
support2.dll
support3.dll
support4.dll
service.example.dll

Application has been deployed into production successfully

Question:
Can I modify support2.dll, test and simply copy
support2.dll into production? What issues can this
cause? I have successfully done this into our staging
environment, but get a configuartion error when it
was put into production.

Thanks
 
Strong named?
Depends how much got changed in the dll.

the app might be bound to a specific dll version, so you might have to edit
your config file to redirect it to the new version.
 
Back
Top