Hi,
I'm trying to build package using MSBUILD and used this version number in my customization file:11.0.1.0205 but MSBUILD is throwing this error:
error APPX0501: Validation error. error C00CE169: App manifest validation error: The app manifest must be valid as per schema: Line 10, Column 87, Reason: '11.0.1.0205' violates pattern constraint of '(0|[1-9][0-9]{0,3}|[1-5][0-9]{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])(\.(0|[1-9][0-9]{0,3}|[1-5][0-9]
{4}|6[0-4][0-9]{3}|65[0-4][0-9]{2}|655[0-2][0-9]|6553[0-5])){3}'
Can't I use 0205 in the fourth segment?
Thank you.
Model version consists of four digits and all of them are integers. So 0205 is not allowed, 205 would be.
How did you set up that number? At least in Visual Studio you can't use such number.