软件版本控制 - MS 模式和实践
我正在阅读 MS 模式和实践团队 http://msdn 的构建过程文章。 microsoft.com/en-us/library/ee817676.aspx
他们建议使用模式 major version 。小版本。内部版本号。 AssemblyInfo 文件中的修订版。
我了解如何以及何时更新主要版本和次要版本,并假设我有一个 CI 构建服务器,它可以在成功构建时增加构建号。但是,我不太明白在什么情况下应该考虑增加修订号?
I am reading the build process article from MS patterns and pratices team http://msdn.microsoft.com/en-us/library/ee817676.aspx
They recommend using the pattern major version . minor version . build number . revision in the AssemblyInfo file.
i understand how and when to update major version and minor version and assuming i have a CI build server which can increment build numbers on successful builds. However, I dont quite understand under what circumstances one should consider incrementing revision numbers ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修订号用于跟踪给定主要和特定版本内的构建。次要版本。
通常您会向客户发送给定的主要版本和次要版本。次要版本
(在 MS 术语中,“Windows XP”将是主要版本,“SP3”将是次要版本。)
为了在给定的主要版本中向客户提供任何修补程序;次要组合,您必须计算修订版本。
此 也可能是关于该主题的好读物
Revision numbers are used to track builds within a given major & minor version.
Usually you ship to the customer a given major & minor version
(In MS-terms "Windows XP" would be the major version, "SP3" would be the minor version.)
In order to give any hotfix to the customer within your given major & minor combination you would have to count up the revision.
This might also be a good read on the topic