How can I patch .NET assemblies?

泪湿孤枕 提交于 2019-12-04 09:53:21

This is not .net but should be able to generate a patch file for you -

http://www.tibed.net/vpatch/

I used to use it for gaming and maps e.t.c. but it should work with any two files.

I'd recommend replacing your assemblies. Patching has always been a little problematic - at least in comparison to replacement. Assembly files tend to be fairly small, so replacing them is usually not a very large task.

Typically, the reason that assemblies change if the source is identical typically has to do with one of a few things. Your project may have changes, but more likely, one of the assembly's referenced assemblies has changed. In that case, you'll want to be distributing the full set of assemblies, including the referenced assembly, or you'll get versioning issues and breakage on the customer's machines.

Creating a new installable is usually much simpler and safer than trying to patch a machine in place.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!