我已经设置了.NET Assembly中的产品版本,正如Rob Mensching在这里所描述的那样 How can I set the WiX installer version to the current build version?
但是当我尝试构建安装程序时,我收到了一个错误:
error LGHT0204: ICE24: ProductVersion: 11.12001.1693.25097 is an invalid version string
如何解决这个问题? 日Thnx。
答案 0 :(得分:2)
您收到错误的原因是版本号无效为MSI包的ProductVersion
。
<major>.<minor>.<build>
major
的最大值为255
minor
的最大值为255
build
的最大值为65,535
注意:如果在产品版本中包含第四个字段,安装程序将忽略第四个字段。
来源: http://msdn.microsoft.com/en-us/library/aa370859%28v=vs.85%29.aspx