更新 exe 的 AssemblyInformationalVersion 属性
是否可以更新 EXEs AssemblyInformationalVersion 属性?我试图在 InstallAware 项目的 setup.exe 输出中包含其他信息,而不仅仅是标准的 4 位版本信息。
Is it possible to update an EXEs AssemblyInformationalVersion attribute? I'm trying to include additional information in the setup.exe output from an InstallAware project rather than just the standard 4 digit version info.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前尚不清楚您是要在构建之前还是之后更新它。如果您想在 C# 项目中编译之前更改它,只需将其添加到您的
AssemblyInfo.cs
中即可:It's not clear whether you want to update it before or after the build. If you want to change it prior to compilation in a C# project, just add it to your
AssemblyInfo.cs
:Vista和Server 2008的Windows资源管理器似乎有bug。如果格式不是 ABCD,则将 AssemblyInformationalVersion 显示为 0.0.0.0
有时我们可能想将 1.2-beta、v2.10.2-g77d3fa9 等版本放入 AssemblyInformationalVersion 中。
It seems that Vista and Server 2008's Windows Explorer has bug. It displays AssemblyInformationalVersion as 0.0.0.0 if the format is not A.B.C.D
Sometimes we may want to put versions like 1.2-beta, v2.10.2-g77d3fa9 in AssemblyInformationalVersion.