AssemblyVersion(“1.0.*”) 比修订值晚一小时?
我使用以下语法将编译时已过的秒数的一半放入程序集版本的修订值中:
[assemble: AssemblyVersion("1.0.*")]
Windows 资源管理器显示生成的程序集的以下两个属性(XYZ 是我的操作并屏蔽日期信息,这与我的问题无关):
文件版本:1.0.XYZ.19527
修改日期:XYZ 11:50 AM
19527 乘以 2 得到 10:50 AM -- 为什么相差一小时?
I'm using the following syntax to place into my assembly version's Revision value half the number of seconds in the day which have passed at the moment of compilation:
[assembly: AssemblyVersion("1.0.*")]
Windows Explorer shows the following two properties for the resulting assembly (XYZ is my doing and masks date information, which is irrelevant to my question):
File version: 1.0.XYZ.19527
Date modified: XYZ 11:50 AM
19527 times two comes to 10:50 AM -- why the one hour difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修订号未考虑夏令时偏移。
The revision number is not taking Daylight Saving Time offset into account.