Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自动编号构建版本是否有任何智能解决方案。
每个构建都应该增加版本号并将其存储在可执行项目中的某个位置,并在程序执行期间读取此编号。
我正在使用 VS 2008 - 带有 .NET CF 3.5 的移动设备项目
在您的 AssemblyInfo.cs 中,只需:
[assembly: AssemblyVersion("1.0.*")]
(没有AssemblyFileVersion)
AssemblyFileVersion
这将根据日期和时间自动为版本的第三和第四部分编号 - 您仍然可以调整主要和次要版本以匹配您的营销团队对版本号的想法......