MSB3190: ClickOnce does not support the request execution level 'level'
This error occurs when an app.manifest included in the project does not have UAC Execution level set to asInvoker
(which ClickOnce requires).
To resolve this error, make sure you have the following in app.manifest under the trustInfo
settings:
XML
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" />
</requestedPrivileges>
</security>
</trustInfo>
<requestedExecutionLevel level="asInvoker" uiAccess="false" />