You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Building the MSI package requires the version to be purely numerical (eg 0.0.0),
# which is not the case if with custom build workflow.
# This specifically works around the following issue:
# C:\a\vector\vector\target\msi-x64\vector.wxs(6) : error CNDL0108 : The Product/@Version attribute's value, '0.29.0.custom.a28ecdc', is not a valid version.
# Legal version values should look like 'x.x.x.x' where x is an integer from 0 to 65534.
# , by changing "0.29.0.custom.a28ecdc" -> "0.29.0".