I have a Xamarin application that is published to an appxbundle package. I have re-created the application in Maui, and that produces an msix package. When I try up update an installation of the Xamarin version with the new Maui version, I get:
"App installation failed with error message: Deployment Add operation with target volume C: on Package MyPackageetcetc from: (MyPackageeetcetc.msix) failed with error 0x80073CF3."
If I do a fresh install of the new version, it installs ok. Also when it installs, it does use the same folder name within C:\Users[username]\AppData\Local\Packages.
I have been unable to produce the Maui versions installation file from Visual Studio's Publish option (I get The specified RuntimeIdentifier 'win10-x86' is not recognized. See https://aka.ms/netsdk1083 for more information. C:\Program Files\dotnet\sdk\9.0.101\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.Sdk.FrameworkReferenceResolution.targets) - so have been using a command line:
dotnet publish MyProject.csproj -f net9.0-windows10.0.19041.0 -c Testing -p:RuntimeIdentifierOverride=win-x64
Within the AppxManifest.xml in the packages, the Identity Name is the same, although I have ProcessorArchitecture="x64" in the Maui installer, presumably that isn't going to stop it updating?
Any help would be much appreciated!