I have created a setup project for a windows application in VS2010 (C#). I have added project primary output in application folder and its shortcut to desktop folder. After installing the setup, the desktop contain shortcut exe file not shows "Run as Administrator" option on mouse right click.
I have seen some post in stack overflow to set the tag in manifest file like this :
<requestedExecutionLevel level="requireAdministrator" uiAccess="true"/>
But I couldn't find any manifest file in my app. where its location? How to attcah this manifest to setup project?
Please help.