当项目内部版本号为 xx* 或 xxx* 时,Visual Studio 生成的内部版本号的规则是什么?

发布于 2024-11-28 12:53:39 字数 92 浏览 0 评论 0原文

当项目内部版本号为 xx* 或 xxx* 时,Visual Studio 生成的内部版本号的规则是什么?我不知道这方面的文档在哪里,谷歌也没有给出我想要的东西......

What are the rules for the build numbers Visual Studio generates when a project build number is x.x.* or x.x.x.*? I don't know where the documentation for this is and Google didn't yield what I was looking for...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

百思不得你姐 2024-12-05 12:53:39

这些规则已记录很长时间,位于 AssemblyVersionAttribute

您可以指定所有值,也可以使用星号 (*) 接受默认内部版本号、修订号或两者。例如,[assemble:AssemblyVersion("2.3.25.1")] 表示 2 为主版本,3 为次版本,25 为内部版本号,1 为修订号。版本号(例如 [ assembly:AssemblyVersion("1.2.*")] 指定 1 作为主要版本,2 作为次要版本,并接受默认的内部版本号和修订号。版本号(如 [assemble:AssemblyVersion("1.2.15.*")] 指定 1 为主版本、2 为次要版本、15 为内部版本号,并接受默认修订版数字。默认内部版本号每日递增。默认修订号是随机的。

The rules have been documented for a long time, under the AssemblyVersionAttribute:

You can specify all the values or you can accept the default build number, revision number, or both by using an asterisk (*). For example, [assembly:AssemblyVersion("2.3.25.1")] indicates 2 as the major version, 3 as the minor version, 25 as the build number, and 1 as the revision number. A version number such as [assembly:AssemblyVersion("1.2.*")] specifies 1 as the major version, 2 as the minor version, and accepts the default build and revision numbers. A version number such as [assembly:AssemblyVersion("1.2.15.*")] specifies 1 as the major version, 2 as the minor version, 15 as the build number, and accepts the default revision number. The default build number increments daily. The default revision number is random.

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