码迷,mamicode.com
首页 > Web开发 > 详细

Change Assembly Version in a compiled .NET assembly

时间:2019-08-26 18:09:38      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:stack   lease   ase   sse   href   --   research   mic   out   

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

标签:stack   lease   ase   sse   href   --   research   mic   out   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!