Mono / MonoDevelop manifest file to run C # applications in Administrator

I have created several C # applications with MonoDevelop that need admin privileges. I know that you can make it work as an administrator with a manifest file built into:

<requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> 

This work with Visual Studio, however, I use mono + MonoDevelop. Do you know how to do this in MonoDevelop?

+4
source share
1 answer

This manifest works only for Windows (where you can use the .NET Framework), so I do not see its significant use for Mono.

But if your test shows this problem and you have a test sample, you can create a bug report so Mono guys can track it,

http://www.mono-project.com/Bugs

0
source

Source: https://habr.com/ru/post/1396358/


All Articles