Note: this might also require a little command line jiggery-pokery See https://stackoverflow.com/questions/51911405/launching-a-windows-10-uwp-app-from-the-command-line-cmd See also: https://learn.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/element-uap5-appexecutionalias To package.appmanifest, 1 add this namespace xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" 2. Add this extension <Extensions> <uap5:Extension Category="windows.appExecutionAlias" Executable="MyApp.exe" EntryPoint="MyApp.App"> <uap5:AppExecutionAlias> <uap5:ExecutionAlias Alias="MyApp.exe" /> </uap5:AppExecutionAlias> </uap5:Extension> </Extensions>
Note: this might also require a little command line jiggery-pokery
See https://stackoverflow.com/questions/51911405/launching-a-windows-10-uwp-app-from-the-command-line-cmd
See also: https://learn.microsoft.com/en-us/uwp/schemas/appxpackage/uapmanifestschema/element-uap5-appexecutionalias
To package.appmanifest,
1 add this namespace
xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"