How to run a WinUI 3 singleProject App with less than fullTrust
?
#4383
-
I if just use the "Blank App, Packaged" template I cannot find a way to run it with other than full trust. The advice given in #3435 and other places https://nicksnettravels.builttoroam.com/winui-appcontainer/ does not appear to work. I'll note that in the relevant part of <Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities> the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
After removing the runFullTrust restricted capability, you need to explicitly set the EntryPoint of the Application element to |
Beta Was this translation helpful? Give feedback.
After removing the runFullTrust restricted capability, you need to explicitly set the EntryPoint of the Application element to
windows.partialTrustApplication
. The specifics of what this means are documented in the Application's documentation.If it doesn't exist, you also need to add the mp:PhoneIdentity element to the manifest too.