I am using an Azure Pipeline that runs automatically when I make a commit to my GitHub repository. The .yml file generates a .msixupload file (for UWP) for upload to the Microsoft Store. However, I cannot upload the generated .msixupload file, as the version number in the .appxmanifest file never changes, and I am attempting to build an update for an existing app. How can I increment the version number each time the Azure Pipeline is run?
I have tried adding
<AppxAutoIncrementPackageRevision>True</AppxAutoIncrementPackageRevision>
to the .appxmanifest file as described here: How do I auto increment the package version number?, but that has not made any difference.