app.manifest 1.4 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <assemblyIdentity version="1.0.0.0" name="MyApplication.app" />
  4. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  5. <security>
  6. <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
  7. <!-- UAC Manifest Options
  8. If you want to change the Windows User Account Control level replace the
  9. requestedExecutionLevel node with one of the following.
  10. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  11. <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
  12. <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
  13. If you want to utilize File and Registry Virtualization for backward
  14. compatibility then delete the requestedExecutionLevel node.
  15. -->
  16. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  17. </requestedPrivileges>
  18. <applicationRequestMinimum>
  19. <PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
  20. <defaultAssemblyRequest permissionSetReference="Custom" />
  21. </applicationRequestMinimum>
  22. </security>
  23. </trustInfo>
  24. </asmv1:assembly>