app.manifest 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <assembly xmlns="urn:schemas-microsoft-com:asm.v1"
  3. manifestVersion="1.0"
  4. xmlns:asmv2="urn:schemas-microsoft-com:asm.v2"
  5. xmlns:asmv3="urn:schemas-microsoft-com:asm.v3"
  6. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  7. <trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
  8. <security>
  9. <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
  10. <!-- UAC Manifest Options
  11. If you want to change the Windows User Account Control level replace the
  12. requestedExecutionLevel node with one of the following.
  13. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  14. <requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
  15. <requestedExecutionLevel level="highestAvailable" uiAccess="false" />
  16. Specifying requestedExecutionLevel node will disable file and registry virtualization.
  17. If you want to utilize File and Registry Virtualization for backward
  18. compatibility then delete the requestedExecutionLevel node.
  19. -->
  20. <requestedExecutionLevel level="asInvoker" uiAccess="false" />
  21. </requestedPrivileges>
  22. </security>
  23. </trustInfo>
  24. <asmv3:application>
  25. <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
  26. <dpiAware>true</dpiAware>
  27. </asmv3:windowsSettings>
  28. </asmv3:application>
  29. <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
  30. <application>
  31. <!-- A list of all Windows versions that this application is designed to work with.
  32. Windows will automatically select the most compatible environment.-->
  33. <!-- If your application is designed to work with Windows Vista, uncomment the following supportedOS node-->
  34. <!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"></supportedOS>-->
  35. <!-- If your application is designed to work with Windows 7, uncomment the following supportedOS node-->
  36. <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
  37. <!-- If your application is designed to work with Windows 8, uncomment the following supportedOS node-->
  38. <!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"></supportedOS>-->
  39. </application>
  40. </compatibility>
  41. <!-- Enable themes for Windows common controls and dialogs (Windows XP and later) -->
  42. <dependency>
  43. <dependentAssembly>
  44. <assemblyIdentity
  45. type="win32"
  46. name="Microsoft.Windows.Common-Controls"
  47. version="6.0.0.0"
  48. processorArchitecture="*"
  49. publicKeyToken="6595b64144ccf1df"
  50. language="*"
  51. />
  52. </dependentAssembly>
  53. </dependency>
  54. </assembly>