From: Bob A. <wi...@bo...> - 2007-01-20 22:03:08
|
Scott Sam wrote: > Our dll's are strongly typed (I think that's what its called). So we > can't have dll's of different versions talking to each other. What is > the best way to apply a hotfix for when you only need to replace a > couple files. We can rebuild the new dll's to be the same version as > the old ones, but how do you get those to be updated? > If all the DLLs need the same version, update them all to the new version number and include them all in the patch. If the version info is the only change, MSI delta patches will be tiny so there's little overhead in including all of them. You definitely don't want to lie about file versions -- MSI relies on it to be accurate. -- sig://boB http://bobs.org |