-
I have an app that I upgraded from UWP to WinUI3 using this tool. After tackling all the compiler errors and attempting to build I get: I'm able to build other WinUI3 apps with no issue, so I'm not sure what aspect of upgrade is causing the issue or how to narrow it down. Does anyone have any suggestions? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
After comparing with a WinUI3 template, I found that I needed to add: |
Beta Was this translation helpful? Give feedback.
After comparing with a WinUI3 template, I found that I needed to add:
<Capabilities> <rescap:Capability Name="runFullTrust" /> </Capabilities>
with
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
To the Package.appxmanifest file.