读取WPF应用程序的程序集版本信息
我正在读取 wpf 应用程序的版本信息,但没有获得在 AssemblyInfo.cs
文件中写入的正确版本。在我的文件中,
[assembly: AssemblyVersion("0.1.001")]
[assembly: AssemblyFileVersion("0.0.001")]
我正在使用此代码读取版本信息
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
,我正在获取此版本 0.1.1.0
,它应该是 0.1.001
谢谢
I am reading version information of my wpf application, but I am not getting the correct version as I have write in AssemblyInfo.cs
file. In my file there is
[assembly: AssemblyVersion("0.1.001")]
[assembly: AssemblyFileVersion("0.0.001")]
I am reading version information using this code
System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
I am getting this version 0.1.1.0
and it should be 0.1.001
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Version
类的属性Major
、Minor
、Build
和Revision
的类型int
,而不是string
。因此,当来自汇编版本的字符串被解析为Version
类时,该字符串的各个部分将被转换为 int 表示形式。还有规则是指定版本字符串的第一个数字是Version
的Major
组件:The properties
Major
,Minor
,Build
andRevision
of classVersion
are of typeint
, notstring
. So when string from assembly version is parsed intoVersion
class, the parts of this string will be converted to int representation. Also there are rule that first number of specified version string isMajor
component ofVersion
:在 MSDN 文章,它说:
因此它要么向上舍入,要么删除尾随零以获得有效整数。
In the MSDN article, it says that:
So it's either rounding up or removing trailing zeros to get a valid integer.