How to add the manifest to resource of VB.NET?

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I want to add the manifest file(elevated UAC) to my vb.net application, how
to add this manifest to resource? Thank you.

The manifest file is below:
///////////////////////////////////////////////
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<description>YourAppName Application</description>

<!-- Identify the application security requirements. -->
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="requireAdministrator"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
 
Back
Top