Forum Discussion
TuittiPazzi
May 12, 2020Copper Contributor
No path to application after sideloading????
Hello. I hope I have the correct board for this post. I have finally created my signed app for sideloading so I can test it. It installs. I can run it via Start Menu fine. The problem is I ca...
James Pike
Microsoft
May 12, 2020Hi TuittiPazzi,
You can use AppExecutionAlias to approximate adding your executable to the Path.
<Extension Category="windows.appExecutionAlias"
Executable="[ExecutableName]"
EntryPoint="Windows.FullTrustApplication">
<AppExecutionAlias>
<desktop:ExecutionAlias Alias="[AliasName]" />
</AppExecutionAlias>
</Extension>
There's a section discussing this in: https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/desktop-to-uwp-extensions
Thanks!
James
- TuittiPazziMay 13, 2020Copper ContributorThanks. I added appExecutionAlias to my package.appxmanifest file in VS 2019, but I'm getting an 0x80004005 error trying to publish.