更新 exe 的 AssemblyInformationalVersion 属性

发布于 2024-08-27 21:07:58 字数 110 浏览 3 评论 0原文

是否可以更新 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风苍溪 2024-09-03 21:07:58

目前尚不清楚您是要在构建之前还是之后更新它。如果您想在 C# 项目中编译之前更改它,只需将其添加到您的 AssemblyInfo.cs 中即可:

[assembly: AssemblyInformationalVersion("0.2")]

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:

[assembly: AssemblyInformationalVersion("0.2")]
半暖夏伤 2024-09-03 21:07:58

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文