首页 > Web开发 > 详细

Change Assembly Version in a compiled .NET assembly

时间:2019-08-26 18:46:20      阅读:55      评论:0      收藏:0      [点我收藏+]

Change Assembly Version in a compiled .NET assembly

You can use ILMerge:

ILMerge.exe Foo.dll /ver:1.2.3.4 /out:Foo2.dll

A valid reason to do this is to increment the assembly version in a build in you find breaking changes (using NDepend for example). That way if there are no breaking changes the assembly version stays the same, and you can patch released builds easily.

We always increment the file version, and that reflects the build number. 

 

 

 

 

Change Assembly Version in a compiled .NET assembly

原文:https://www.cnblogs.com/chucklu/p/11413992.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!