I am new to MSIX packaging so if this is a naïve question I apologise.
I have tried to set the start menu folder of the application shortcut for my latest MAUI-Blazor hybrid app as part of the MSIX package. I have followed the guidance in Group applications under a folder in the Start menu - MSIX | Microsoft LearnBut this results in the error:
DEP0700: Registration of the app failed. [0x80080204] error 0xC00CE014: App manifest validation error: The app manifest must be valid as per schema: Line 32, Column 8, Reason: Element '{http://schemas.microsoft.com/appx/manifest/uap/windows10}VisualElements' is unexpected according to content model of parent element '{http://schemas.microsoft.com/appx/manifest/foundation/windows10}Application'.
My take of this is the version of "Applcation" element in the latest Maui-Blazor project does not expect uap3:VisualElements. But I am not sure how to update this even if this is the issue.There are no other factors in this error, I am not attempting to develop, run or deploy to an external or network drive as is often the issue with this error. On reverting back to uap:VisualElements and deleting the VisualGroup property, the error disappears and the code works as expected.My requirements are to create an MSI or MSIX for windows deployment and the start menu shortcut must be in the same folder as previous applications. Could you please advise on whether this is possible or if I should look at a different packaging method?