Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Msi version string generation (#7725)
Based on operator precedence, `0x3FFF << 4` was happening first, ensuring that we always cut off the lower 4 bits of the build number when generating an Msi version. The good news appears to be that the Major and Minor stay the same or go up, though the patch value will go down. Before: A build number major value of 30327 or 30328 and build number value of 9 would generate `48.0.30329` After: `48.3.26489` and `48.3.26505`, respectively.
- Loading branch information